HomeSort by relevance Sort by last modified time
    Searched refs:PlatformChannelEndpoint (Results 1 - 24 of 24) sorted by null

  /external/libchrome/mojo/public/cpp/platform/
platform_channel_endpoint.cc 9 PlatformChannelEndpoint::PlatformChannelEndpoint() = default;
11 PlatformChannelEndpoint::PlatformChannelEndpoint(
12 PlatformChannelEndpoint&& other) = default;
14 PlatformChannelEndpoint::PlatformChannelEndpoint(PlatformHandle handle)
17 PlatformChannelEndpoint::~PlatformChannelEndpoint() = default;
19 PlatformChannelEndpoint& PlatformChannelEndpoint::operator=
    [all...]
platform_channel_endpoint.h 17 // PlatformChannelEndpoint.
18 class COMPONENT_EXPORT(MOJO_CPP_PLATFORM) PlatformChannelEndpoint {
20 PlatformChannelEndpoint();
21 PlatformChannelEndpoint(PlatformChannelEndpoint&& other);
22 explicit PlatformChannelEndpoint(PlatformHandle handle);
23 ~PlatformChannelEndpoint();
25 PlatformChannelEndpoint& operator=(PlatformChannelEndpoint&& other);
29 PlatformChannelEndpoint Clone() const
    [all...]
platform_channel.h 56 const PlatformChannelEndpoint& local_endpoint() const {
59 const PlatformChannelEndpoint& remote_endpoint() const {
63 PlatformChannelEndpoint TakeLocalEndpoint() WARN_UNUSED_RESULT {
67 PlatformChannelEndpoint TakeRemoteEndpoint() WARN_UNUSED_RESULT {
100 static PlatformChannelEndpoint RecoverPassedEndpointFromString(
105 static PlatformChannelEndpoint RecoverPassedEndpointFromCommandLine(
109 PlatformChannelEndpoint local_endpoint_;
110 PlatformChannelEndpoint remote_endpoint_;
named_platform_channel_fuchsia.cc 19 PlatformChannelEndpoint NamedPlatformChannel::CreateClientEndpoint(
named_platform_channel.cc 44 PlatformChannelEndpoint NamedPlatformChannel::ConnectToServer(
51 PlatformChannelEndpoint NamedPlatformChannel::ConnectToServer(
55 return PlatformChannelEndpoint();
named_platform_channel.h 99 static PlatformChannelEndpoint ConnectToServer(const ServerName& server_name)
104 static PlatformChannelEndpoint ConnectToServer(
111 static PlatformChannelEndpoint CreateClientEndpoint(
named_platform_channel_posix.cc 129 PlatformChannelEndpoint NamedPlatformChannel::CreateClientEndpoint(
136 return PlatformChannelEndpoint();
140 return PlatformChannelEndpoint();
146 return PlatformChannelEndpoint();
148 return PlatformChannelEndpoint(std::move(handle));
named_platform_channel_win.cc 84 PlatformChannelEndpoint NamedPlatformChannel::CreateClientEndpoint(
90 return PlatformChannelEndpoint();
107 return PlatformChannelEndpoint(std::move(handle));
platform_channel.cc 156 local_endpoint_ = PlatformChannelEndpoint(std::move(local_handle));
157 remote_endpoint_ = PlatformChannelEndpoint(std::move(remote_handle));
238 PlatformChannelEndpoint PlatformChannel::RecoverPassedEndpointFromString(
244 return PlatformChannelEndpoint();
246 return PlatformChannelEndpoint(
252 return PlatformChannelEndpoint();
254 return PlatformChannelEndpoint(PlatformHandle(zx::handle(
260 return PlatformChannelEndpoint();
262 return PlatformChannelEndpoint(PlatformHandle(
269 return PlatformChannelEndpoint();
    [all...]
  /external/libchrome/mojo/core/
connection_params.h 21 explicit ConnectionParams(PlatformChannelEndpoint endpoint);
28 const PlatformChannelEndpoint& endpoint() const { return endpoint_; }
33 PlatformChannelEndpoint TakeEndpoint() { return std::move(endpoint_); }
40 PlatformChannelEndpoint endpoint_;
broker.h 30 PlatformChannelEndpoint GetInviterEndpoint();
42 PlatformChannelEndpoint inviter_endpoint_;
connection_params.cc 16 ConnectionParams::ConnectionParams(PlatformChannelEndpoint endpoint)
broker_posix.cc 84 PlatformChannelEndpoint(std::move(incoming_platform_handles[0]));
90 PlatformChannelEndpoint Broker::GetInviterEndpoint() {
broker_win.cc 98 inviter_endpoint_ = PlatformChannelEndpoint(std::move(endpoint_handle));
119 PlatformChannelEndpoint Broker::GetInviterEndpoint() {
channel_unittest.cc 187 PlatformChannelEndpoint endpoint,
node_controller.cc 214 PlatformChannelEndpoint endpoint = broker_->GetInviterEndpoint();
918 ConnectionParams(PlatformChannelEndpoint(std::move(broker_channel))),
    [all...]
core.cc     [all...]
invitation_unittest.cc 398 PlatformChannelEndpoint channel_endpoint =
    [all...]
  /external/libchrome/mojo/public/cpp/system/
isolated_connection.h 46 ScopedMessagePipeHandle Connect(PlatformChannelEndpoint endpoint);
invitation.h 91 PlatformChannelEndpoint channel_endpoint,
127 PlatformChannelEndpoint channel_endpoint,
163 static IncomingInvitation Accept(PlatformChannelEndpoint channel_endpoint);
168 PlatformChannelEndpoint channel_endpoint);
isolated_connection.cc 30 PlatformChannelEndpoint endpoint) {
invitation.cc 154 PlatformChannelEndpoint channel_endpoint,
175 PlatformChannelEndpoint channel_endpoint,
217 PlatformChannelEndpoint channel_endpoint) {
241 PlatformChannelEndpoint channel_endpoint) {
  /external/libchrome/mojo/public/cpp/system/tests/
invitation_unittest.cc 68 PlatformChannelEndpoint channel_endpoint;
166 static PlatformChannelEndpoint RecoverEndpointFromCommandLine() {
  /external/libchrome/mojo/core/test/
multiprocess_test_helper.cc 147 PlatformChannelEndpoint local_channel_endpoint;

Completed in 4279 milliseconds