Lines Matching full:mojo
1 # Mojo C++ Platform API
2 This document is a subset of the [Mojo documentation](/mojo/README.md).
7 The Mojo C++ Platform API provides a lightweight set of abstractions around
9 This API is primarily useful in conjunction with Mojo
10 [Invitations](/mojo/public/cpp/system/README.md#Invitations) to bootstrap Mojo
24 [header](https://cs.chromium.org/src/mojo/public/cpp/platform/platform_handle.h)
29 primarily for use with the Mojo
30 [Invitations](/mojo/public/cpp/system/README.md#Invitations) API. Constructing
38 [header](https://cs.chromium.org/src/mojo/public/cpp/platform/platform_channel.h)
40 [Invitations](/mojo/public/cpp/system/README.md#Invitations) documentation for
59 mojo::NamedPlatformChannel::Options options;
60 mojo::NamedPlatformChannel named_channel(options);
66 void OnGotServerName(const mojo::NamedPlatformChannel::ServerName& name) {
68 mojo::PlatformChannelEndpoint endpoint =
69 mojo::NamedPlatformChannel::ConnectToServer(name);
72 auto invitation = mojo::IncomingInvitation::Accept(std::move(endpoint));