Home
last modified time | relevance | path

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

/external/libmojo/mojo/edk/embedder/
Dembedder_unittest.cc263 MojoHandle mp0, mp1; in TEST_F() local
264 CreateMessagePipe(&mp0, &mp1); in TEST_F()
270 WriteMessageWithHandles(server_mp, "Bar", &mp1, 1); in TEST_F()
271 mp1 = MOJO_HANDLE_INVALID; in TEST_F()
308 MojoHandle mp1; in DEFINE_TEST_CLIENT_TEST_WITH_PIPE() local
309 EXPECT_EQ("Bar", ReadMessageWithHandles(client_mp, &mp1, 1)); in DEFINE_TEST_CLIENT_TEST_WITH_PIPE()
322 WriteMessageWithHandles(mp1, "quux", &mp2, 1); in DEFINE_TEST_CLIENT_TEST_WITH_PIPE()
326 EXPECT_EQ("FOO", ReadMessage(mp1)); in DEFINE_TEST_CLIENT_TEST_WITH_PIPE()
333 MojoWait(mp1, MOJO_HANDLE_SIGNAL_READABLE, in DEFINE_TEST_CLIENT_TEST_WITH_PIPE()
337 ASSERT_EQ(MOJO_RESULT_OK, MojoClose(mp1)); in DEFINE_TEST_CLIENT_TEST_WITH_PIPE()
/external/libmojo/mojo/edk/system/
Dmultiprocess_message_pipe_unittest.cc518 MojoHandle mp1, mp2; in TEST_F() local
520 MojoCreateMessagePipe(nullptr, &mp1, &mp2)); in TEST_F()
526 MojoWriteMessage(mp1, &hello[0], in TEST_F()
536 MojoWait(mp1, MOJO_HANDLE_SIGNAL_READABLE, in TEST_F()
543 CHECK_EQ(MojoReadMessage(mp1, &read_buffer[0], in TEST_F()
550 MojoClose(mp1); in TEST_F()
556 MojoHandle mp1, mp2; in TEST_F()
558 MojoCreateMessagePipe(nullptr, &mp2, &mp1)); in TEST_F()
564 MojoWriteMessage(mp1, &hello[0], in TEST_F()
574 MojoWait(mp1, MOJO_HANDLE_SIGNAL_READABLE, in TEST_F()
[all …]
/external/selinux/secilc/test/
Dneverallow.cil30 (classmap cm1 (mp1))
31 (classmapping cm1 mp1
59 (neverallow t3 t4 (cm1 (mp1)))
Dbounds.cil30 (classmap cm1 (mp1))
31 (classmapping cm1 mp1
208 (allow b_t5 b_tc (cm1 (mp1)))
214 (allow b_t5_c b_tc (cm1 (mp1)))
/external/iptables/iptables/
Dnft-shared.c803 struct xtables_rule_match *mp1; in compare_matches() local
806 for (mp1 = mt1, mp2 = mt2; mp1 && mp2; mp1 = mp1->next, mp2 = mp2->next) { in compare_matches()
807 struct xt_entry_match *m1 = mp1->match->m; in compare_matches()
821 mp1->match->userspacesize) != 0) { in compare_matches()
828 if (mp1 != mp2) { in compare_matches()
/external/syslinux/core/
Dhello.c54 void mp1(void) in mp1() function
Dextern.inc26 extern mp1, mp2, mp3, mp4, mp5
/external/clang/test/Parser/
Dcxx-ambig-init-templ.cpp68 int mp1 = 0 < 1, member
/external/clang/test/SemaCXX/
Dcalling-conv-compat.cpp343 void ( A::*mp1)() = &A::method_thiscall; variable
Dconditional-expr.cpp190 const int (MixedFieldsDerived::*mp1) = in test()