Home | History | Annotate | Download | only in system

Lines Matching defs:MessagePipe

31 // |MessagePipe| is the secondary object implementing a message pipe (see the
34 class MOJO_SYSTEM_IMPL_EXPORT MessagePipe
35 : public base::RefCountedThreadSafe<MessagePipe> {
37 // Creates a |MessagePipe| with two new |LocalMessagePipeEndpoint|s.
38 static MessagePipe* CreateLocalLocal();
40 // Creates a |MessagePipe| with a |LocalMessagePipeEndpoint| on port 0 and a
43 static MessagePipe* CreateLocalProxy(
46 // Creates a |MessagePipe| with a |ProxyMessagePipeEndpoint| on port 0 and a
52 static MessagePipe* CreateProxyLocal(
103 MessagePipe();
105 friend class base::RefCountedThreadSafe<MessagePipe>;
106 virtual ~MessagePipe();
130 DISALLOW_COPY_AND_ASSIGN(MessagePipe);