Searched refs:msg1 (Results 1 - 4 of 4) sorted by relevance

/haiku/src/tests/kits/app/bmessage/
H A DMessageOpAssignTest.cpp23 BMessage msg1(1234);
25 msg2 = msg1;
26 CPPUNIT_ASSERT(msg2.what == msg1.what);
H A DMessageConstructTest.cpp56 BMessage msg1(1234);
57 CPPUNIT_ASSERT(msg1.what == 1234);
58 ConfirmNullConstruction(msg1);
60 BMessage msg2(msg1);
61 CPPUNIT_ASSERT(msg2.what == msg1.what);
/haiku/src/tests/kits/storage/
H A DMimeTypeTest.cpp105 static bool operator==(BMessage &msg1, BMessage &msg2);
106 static bool operator!=(BMessage &msg1, BMessage &msg2);
275 operator==(BMessage &msg1, BMessage &msg2) { argument
279 if (msg1.what != msg2.what)
284 msg1.PrintToStream();
291 count1 = msg1.CountNames(B_ANY_TYPE);
296 // Iterate over all the names in msg1 and check that the field
305 err = msg1.GetInfo(B_ANY_TYPE, i, &name, &typeFound1, &countFound1);
316 err = msg1.FindData(name, typeFound1, j, (const void**)&data1, &bytes1);
329 operator!=(BMessage &msg1, BMessag argument
2278 types_fields_are_identical(const BMessage &msg1, const BMessage &msg2) argument
2735 BMessage msg1, msg2; local
[all...]
/haiku/src/system/kernel/
H A Dsmp.cpp882 struct smp_msg* msg1; local
884 msg1 = sBroadcastMessages;
885 while (msg1 != NULL && msg1 != msg) {
886 last = msg1;
887 msg1 = msg1->next;
891 if (msg1 == msg && last != NULL)
894 panic("last == NULL or msg != msg1");

Completed in 50 milliseconds