Searched defs:handle0 (Results 1 - 6 of 6) sorted by relevance

/external/libmojo/mojo/public/c/system/tests/
H A Dcore_unittest_pure_c.c44 MojoHandle handle0, handle1; local
53 handle0 = MOJO_HANDLE_INVALID;
54 EXPECT_NE(MOJO_RESULT_OK, MojoClose(handle0));
57 MojoWait(handle0, ~MOJO_HANDLE_SIGNAL_NONE,
61 EXPECT_EQ(MOJO_RESULT_OK, MojoCreateMessagePipe(NULL, &handle0, &handle1));
67 MojoWaitMany(&handle0, &signals, 1, 1, &result_index, states));
78 MojoWriteMessage(handle0, kHello, (uint32_t)sizeof(kHello), NULL,
97 EXPECT_EQ(MOJO_RESULT_OK, MojoClose(handle0));
/external/libmojo/mojo/public/cpp/system/
H A Dmessage_pipe.h49 MessagePipeHandle handle0; local
52 options, handle0.mutable_value(), handle1.mutable_value());
55 message_pipe0->reset(handle0);
135 ScopedMessagePipeHandle handle0; member in class:mojo::MessagePipe
140 MojoResult result = CreateMessagePipe(nullptr, &handle0, &handle1);
142 DCHECK(handle0.is_valid());
147 MojoResult result = CreateMessagePipe(&options, &handle0, &handle1);
149 DCHECK(handle0.is_valid());
/external/libmojo/mojo/edk/js/
H A Dcore.cc101 MojoHandle handle0 = MOJO_HANDLE_INVALID; local
108 result = MojoCreateMessagePipe(NULL, &handle0, &handle1);
121 result = MojoCreateMessagePipe(&options, &handle0, &handle1);
129 dictionary.Set("handle0", mojo::Handle(handle0));
/external/libmojo/mojo/edk/embedder/
H A Dentrypoints.cc143 MojoResult MojoFuseMessagePipesImpl(MojoHandle handle0, MojoHandle handle1) { argument
144 return g_core->FuseMessagePipes(handle0, handle1);
/external/libmojo/mojo/public/c/system/
H A Dthunks.cc201 MojoResult MojoFuseMessagePipes(MojoHandle handle0, MojoHandle handle1) { argument
203 return g_thunks.FuseMessagePipes(handle0, handle1);
/external/libmojo/mojo/edk/system/
H A Dcore.cc712 MojoResult Core::FuseMessagePipes(MojoHandle handle0, MojoHandle handle1) { argument
720 MojoResult result0 = handles_.GetAndRemoveDispatcher(handle0, &dispatcher0);

Completed in 506 milliseconds