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

  /external/chromium_org/mojo/system/
message_pipe.h 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();
    [all...]
message_pipe.cc 19 MessagePipe* MessagePipe::CreateLocalLocal() {
20 MessagePipe* message_pipe = new MessagePipe();
27 MessagePipe* MessagePipe::CreateLocalProxy(
30 MessagePipe* message_pipe = new MessagePipe();
39 MessagePipe* MessagePipe::CreateProxyLocal
    [all...]
  /external/chromium_org/mojo/public/cpp/system/
message_pipe.h 76 class MessagePipe {
78 MessagePipe();
79 explicit MessagePipe(const MojoCreateMessagePipeOptions& options);
80 ~MessagePipe();
86 inline MessagePipe::MessagePipe() {
92 inline MessagePipe::MessagePipe(const MojoCreateMessagePipeOptions& options) {
98 inline MessagePipe::~MessagePipe() {
    [all...]
  /external/chromium_org/mojo/public/python/mojo/
system.pyx 346 This method can only be used on a handle obtained from |MessagePipe()|.
380 This method can only be used on a handle obtained from |MessagePipe()|.
606 class MessagePipe(object):

Completed in 886 milliseconds