Searched defs:InterfaceRequest (Results 1 - 3 of 3) sorted by relevance

/external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
H A DInterfaceRequest.java12 * InterfaceRequest is being sent.
14 * InterfaceRequest are built using |Interface.Manager|.
18 public class InterfaceRequest<P extends Interface> implements HandleOwner<MessagePipeHandle> { class in inherits:HandleOwner
30 InterfaceRequest(MessagePipeHandle handle) { method in class:InterfaceRequest
51 * Returns an {@link InterfaceRequest} that wraps the given handle. This method is not type safe
55 public static InterfaceRequest asInterfaceRequestUnsafe(MessagePipeHandle handle) {
56 return new InterfaceRequest(handle);
/external/libmojo/mojo/public/cpp/bindings/
H A Dinterface_request.h20 // implementation. If this is not done, the InterfaceRequest will automatically
24 class InterfaceRequest { class in namespace:mojo
26 // Constructs an empty InterfaceRequest, representing that the client is not
28 InterfaceRequest() {} function in class:mojo::InterfaceRequest
29 InterfaceRequest(decltype(nullptr)) {}
31 // Takes the message pipe from another InterfaceRequest.
32 InterfaceRequest(InterfaceRequest&& other) { function in class:mojo::InterfaceRequest
35 InterfaceRequest& operator=(InterfaceRequest
[all...]
/external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/
H A Dmodule.py454 class InterfaceRequest(ReferenceKind): class in inherits:ReferenceKind
473 if not isinstance(kind, InterfaceRequest):
742 return isinstance(kind, InterfaceRequest)

Completed in 147 milliseconds