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

  /external/chromium_org/mojo/public/tests/
system_core_unittest.cc 23 MojoHandle h_0; local
32 h_0 = MOJO_HANDLE_INVALID;
35 MojoWaitMany(&h_0, &wf, 1, MOJO_DEADLINE_INDEFINITE));
37 MojoWriteMessage(h_0,
43 MojoReadMessage(h_0,
49 EXPECT_EQ(MOJO_RESULT_OK, MojoCreateMessagePipe(&h_0, &h_1));
53 MojoWait(h_0, MOJO_WAIT_FLAG_READABLE, 0));
57 MojoWait(h_0, MOJO_WAIT_FLAG_WRITABLE, 0));
61 MojoReadMessage(h_0,
76 // |h_0| should be readable
    [all...]
system_core_cpp_unittest.cc 26 Handle h_0; local
27 EXPECT_EQ(kInvalidHandleValue, h_0.value());
28 EXPECT_EQ(kInvalidHandleValue, *h_0.mutable_value());
29 EXPECT_FALSE(h_0.is_valid());
39 h_1.swap(h_0);
40 EXPECT_EQ(static_cast<MojoHandle>(456), h_0.value());
41 EXPECT_TRUE(h_0.is_valid());
45 h_0.swap(h_1);
46 EXPECT_EQ(static_cast<MojoHandle>(789), h_0.value());
47 EXPECT_TRUE(h_0.is_valid())
138 ScopedMessagePipeHandle h_0; local
182 ScopedMessagePipeHandle h_0; local
285 ScopedMessagePipeHandle h_0; local
332 ScopedMessagePipeHandle h_0; local
    [all...]
  /external/chromium_org/mojo/public/system/
core_cpp.h 187 MessagePipeHandle h_0; local
190 MojoCreateMessagePipe(h_0.mutable_value(), h_1.mutable_value());
192 message_pipe_0->reset(h_0);

Completed in 43 milliseconds