Lines Matching refs:transport_endpoint
223 MojoInvitationTransportEndpoint transport_endpoint; in Accept() local
224 transport_endpoint.struct_size = sizeof(transport_endpoint); in Accept()
225 transport_endpoint.type = MOJO_INVITATION_TRANSPORT_TYPE_CHANNEL; in Accept()
226 transport_endpoint.num_platform_handles = 1; in Accept()
227 transport_endpoint.platform_handles = &endpoint_handle; in Accept()
231 MojoAcceptInvitation(&transport_endpoint, nullptr, &invitation_handle); in Accept()
247 MojoInvitationTransportEndpoint transport_endpoint; in AcceptIsolated() local
248 transport_endpoint.struct_size = sizeof(transport_endpoint); in AcceptIsolated()
249 transport_endpoint.type = MOJO_INVITATION_TRANSPORT_TYPE_CHANNEL; in AcceptIsolated()
250 transport_endpoint.num_platform_handles = 1; in AcceptIsolated()
251 transport_endpoint.platform_handles = &endpoint_handle; in AcceptIsolated()
259 MojoAcceptInvitation(&transport_endpoint, &options, &invitation_handle); in AcceptIsolated()