Searched defs:AssertMsg (Results 1 - 2 of 2) sorted by relevance
/vbox/include/iprt/ |
H A D | assert.h | 698 /** @def AssertMsg 704 # define AssertMsg(expr, a) \ macro 714 # define AssertMsg(expr, a) do { } while (0) 2046 do { AssertMsg(RT_SUCCESS_NP(rc), msg); NOREF(rc); } while (0) 2135 #define AssertRCSuccess(rc) do { AssertMsg((rc) == VINF_SUCCESS, ("%Rra\n", (rc))); NOREF(rc); } while (0) 2540 #define AssertPtr(pv) AssertMsg(VALID_PTR(pv), ("%p\n", (pv))) 2577 #define AssertPtrNull(pv) AssertMsg(VALID_PTR(pv) || (pv) == NULL, ("%p\n", (pv))) 2614 #define AssertGCPhys32(GCPhys) AssertMsg(VALID_PHYS32(GCPhys), ("%RGp\n", (RTGCPHYS)(GCPhys))) 2624 # define AssertGCPtr32(GCPtr) AssertMsg(!((GCPtr) & UINT64_C(0xffffffff00000000)), ("%RGv\n", GCPtr)) 2644 AssertMsg(exp [all...] |
/vbox/src/VBox/HostDrivers/VBoxNetFlt/win/cfg/ |
H A D | VBoxNetCfg.cpp | 46 # define AssertMsg(expr, msg) do{}while (0) macro 868 AssertMsg (p, ("Managed pointer must not be null\n"));
|
Completed in 89 milliseconds