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

  /external/chromium_org/mojo/public/tests/
test_support.h 16 struct MessagePipe {
17 MessagePipe();
18 ~MessagePipe();
23 DISALLOW_COPY_AND_ASSIGN(MessagePipe);
test_support.cc 13 MessagePipe::MessagePipe() {
17 MessagePipe::~MessagePipe() {
  /external/chromium_org/mojo/system/
message_pipe.h 26 // |MessagePipe| is the secondary object implementing a message pipe (see the
30 class MOJO_SYSTEM_IMPL_EXPORT MessagePipe :
31 public base::RefCountedThreadSafe<MessagePipe> {
33 MessagePipe(scoped_ptr<MessagePipeEndpoint> endpoint_0,
36 // Convenience constructor that constructs a |MessagePipe| with two new
38 MessagePipe();
81 friend class base::RefCountedThreadSafe<MessagePipe>;
82 virtual ~MessagePipe();
91 DISALLOW_COPY_AND_ASSIGN(MessagePipe);
message_pipe_dispatcher.h 17 class MessagePipe;
26 void Init(scoped_refptr<MessagePipe> message_pipe, unsigned port);
52 scoped_refptr<MessagePipe> message_pipe_; // This will be null if closed.
message_pipe.cc 18 MessagePipe::MessagePipe(scoped_ptr<MessagePipeEndpoint> endpoint_0,
24 MessagePipe::MessagePipe() {
30 unsigned MessagePipe::GetPeerPort(unsigned port) {
35 void MessagePipe::CancelAllWaiters(unsigned port) {
43 void MessagePipe::Close(unsigned port) {
64 MojoResult MessagePipe::WriteMessage(
79 MojoResult MessagePipe::ReadMessage(
95 MojoResult MessagePipe::AddWaiter(unsigned port
    [all...]
remote_message_pipe_posix_unittest.cc 60 void ConnectMessagePipes(scoped_refptr<MessagePipe> mp_0,
61 scoped_refptr<MessagePipe> mp_1) {
74 scoped_refptr<MessagePipe> mp) {
117 void ConnectMessagePipesOnIOThread(scoped_refptr<MessagePipe> mp_0,
118 scoped_refptr<MessagePipe> mp_1) {
136 scoped_refptr<MessagePipe> mp) {
179 scoped_refptr<MessagePipe> mp_0(new MessagePipe(
182 scoped_refptr<MessagePipe> mp_1(new MessagePipe(
    [all...]
channel.h 42 // Note that |MessagePipe| calls into |Channel| and the former's |lock_| must be
44 // |MessagePipe|, it must obtain a reference to the |MessagePipe| (from
49 // references to |MessagePipe|s, |MessagePipe|s (via |ProxyMessagePipeEndpoint|)
51 // calling |AttachMessagePipeEndpoint()|. The reference to |MessagePipe| owned
53 // is done by |MessagePipe|/|ProxyMessagePipeEndpoint|, which simultaneously
81 scoped_refptr<MessagePipe> message_pipe, unsigned port);
112 EndpointInfo(scoped_refptr<MessagePipe> message_pipe, unsigned port);
115 scoped_refptr<MessagePipe> message_pipe
    [all...]
multiprocess_message_pipe_unittest.cc 51 void Init(PlatformChannel* platform_channel, scoped_refptr<MessagePipe> mp) {
79 scoped_refptr<MessagePipe> mp) {
124 void Init(scoped_refptr<MessagePipe> mp) {
134 MojoResult WaitIfNecessary(scoped_refptr<MessagePipe> mp, MojoWaitFlags flags) {
159 scoped_refptr<MessagePipe> mp(new MessagePipe(
209 scoped_refptr<MessagePipe> mp(new MessagePipe(
245 scoped_refptr<MessagePipe> mp(new MessagePipe(
    [all...]
message_pipe_unittest.cc 31 scoped_refptr<MessagePipe> mp(new MessagePipe());
210 scoped_refptr<MessagePipe> mp(new MessagePipe());
241 scoped_refptr<MessagePipe> mp(new MessagePipe());
359 scoped_refptr<MessagePipe> mp(new MessagePipe());
446 scoped_refptr<MessagePipe> mp(new MessagePipe());
    [all...]
channel.cc 27 Channel::EndpointInfo::EndpointInfo(scoped_refptr<MessagePipe> message_pipe,
70 scoped_refptr<MessagePipe> message_pipe, unsigned port) {
189 MessagePipe::GetPeerPort(endpoint_info.port), own_message, NULL) !=
message_pipe_dispatcher_unittest.cc 46 scoped_refptr<MessagePipe> mp(new MessagePipe());
122 scoped_refptr<MessagePipe> mp(new MessagePipe());
162 scoped_refptr<MessagePipe> mp(new MessagePipe());
270 scoped_refptr<MessagePipe> mp(new MessagePipe());
351 scoped_refptr<MessagePipe> mp(new MessagePipe());
    [all...]
message_pipe_dispatcher.cc 21 void MessagePipeDispatcher::Init(scoped_refptr<MessagePipe> message_pipe,
core_impl.cc 36 // reference to the common "secondary" object (e.g., |MessagePipe|). This
47 // |MessagePipe|). To signal/wake a |Waiter|, the object in question -- either a
167 scoped_refptr<MessagePipe> message_pipe(new MessagePipe());
core_impl_unittest.cc 325 TEST_F(CoreImplTest, MessagePipe) {
  /external/chromium_org/mojo/public/utility/
bindings_support_impl_unittest.cc 66 test::MessagePipe test_pipe;
81 test::MessagePipe test_pipe1;
82 test::MessagePipe test_pipe2;
102 test::MessagePipe test_pipe;
run_loop_unittest.cc 98 test::MessagePipe test_pipe;
133 test::MessagePipe test_pipe;
168 test::MessagePipe test_pipe;
  /external/chromium_org/mojo/common/
handle_watcher_unittest.cc 115 mojo::test::MessagePipe test_pipe;
131 mojo::test::MessagePipe test_pipe1;
132 mojo::test::MessagePipe test_pipe2;
133 mojo::test::MessagePipe test_pipe3;
196 mojo::test::MessagePipe test_pipe1;
197 mojo::test::MessagePipe test_pipe2;
251 mojo::test::MessagePipe test_pipe1;
252 mojo::test::MessagePipe test_pipe2;
253 mojo::test::MessagePipe test_pipe3;
292 mojo::test::MessagePipe test_pipe
    [all...]

Completed in 97 milliseconds