HomeSort by relevance Sort by last modified time
    Searched defs:InterfaceRequest (Results 1 - 3 of 3) sorted by null

  /external/libmojo/mojo/public/cpp/bindings/
interface_request.h 25 // implementation. If this is not done, the InterfaceRequest will automatically
29 class InterfaceRequest {
31 // Constructs an empty InterfaceRequest, representing that the client is not
33 InterfaceRequest() {}
34 InterfaceRequest(decltype(nullptr)) {}
38 // InterfaceRequest to the other. For example usage, see comments on
40 explicit InterfaceRequest(InterfacePtr<Interface>* ptr,
49 // Takes the message pipe from another InterfaceRequest.
50 InterfaceRequest(InterfaceRequest&& other)
    [all...]
  /external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
InterfaceRequest.java 12 * InterfaceRequest is being sent.
14 * InterfaceRequest are built using |Interface.Manager|.
18 public class InterfaceRequest<P extends Interface> implements HandleOwner<MessagePipeHandle> {
30 InterfaceRequest(MessagePipeHandle handle) {
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/tools/bindings/pylib/mojom/generate/
module.py 463 class InterfaceRequest(ReferenceKind):
482 if not isinstance(kind, InterfaceRequest):
755 return isinstance(kind, InterfaceRequest)

Completed in 134 milliseconds