Home | History | Annotate | Download | only in tests

Lines Matching defs:h3

75     Handle h3;
80 handle_to_int[h3] = 3;
89 EXPECT_FALSE(handle_to_int.find(h3) == handle_to_int.end());
90 EXPECT_EQ(3, handle_to_int[h3]);
367 ScopedMessagePipeHandle h3;
368 if (CreateMessagePipe(nullptr, &h2, &h3) != MOJO_RESULT_OK)
369 CreateMessagePipe(nullptr, &h2, &h3); // Must be old EDK.
371 // Write a message to |h2|, before we send |h3|.
381 // And also a message to |h3|.
383 WriteMessageRaw(h3.get(),
390 // Send |h3| over |h1| to |h0|.
394 h3_value = h3.release().value();
396 EXPECT_FALSE(h3.get().is_valid());
421 h3;
422 if (CreateMessagePipe(nullptr, &h2, &h3) != MOJO_RESULT_OK)
423 CreateMessagePipe(nullptr, &h2, &h3); // Must be old EDK.
425 // Write a message to |h2|, before we send |h3|.
435 // And also a message to |h3|.
437 WriteMessageRaw(h3.get(),
444 // Send |h3| over |h1| to |h0|.
448 h3_value = h3.release().value();
450 EXPECT_FALSE(h3.get().is_valid());