Home
last modified time | relevance | path

Searched refs:handle_pair (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/mojo/system/
Dcore.cc198 std::pair<MojoHandle, MojoHandle> handle_pair; in CreateMessagePipe() local
201 handle_pair = handle_table_.AddDispatcherPair(dispatcher0, dispatcher1); in CreateMessagePipe()
203 if (handle_pair.first == MOJO_HANDLE_INVALID) { in CreateMessagePipe()
204 DCHECK_EQ(handle_pair.second, MOJO_HANDLE_INVALID); in CreateMessagePipe()
215 message_pipe_handle0.Put(handle_pair.first); in CreateMessagePipe()
216 message_pipe_handle1.Put(handle_pair.second); in CreateMessagePipe()
366 std::pair<MojoHandle, MojoHandle> handle_pair; in CreateDataPipe() local
369 handle_pair = handle_table_.AddDispatcherPair(producer_dispatcher, in CreateDataPipe()
372 if (handle_pair.first == MOJO_HANDLE_INVALID) { in CreateDataPipe()
373 DCHECK_EQ(handle_pair.second, MOJO_HANDLE_INVALID); in CreateDataPipe()
[all …]