Searched defs:ComAssertMsg (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Main/include/
H A DVirtualBoxBase.h201 #define ComAssertMsg(expr, a) AssertMsg(expr, a) macro
203 #define ComAssertMsg(expr, a) \ macro
257 #define ComAssertMsgRC(vrc, msg) ComAssertMsg(RT_SUCCESS(vrc), msg)
271 #define ComAssertComRC(rc) ComAssertMsg(SUCCEEDED(rc), ("COM RC = %Rhrc (0x%08X)", (rc), (rc)))
278 /** Special version of ComAssertMsg that returns ret if expr fails */
280 do { ComAssertMsg(expr, a); if (!(expr)) return (ret); } while (0)
301 /** Special version of ComAssertMsg that returns void if expr fails */
303 do { ComAssertMsg(expr, a); if (!(expr)) return; } while (0)
321 /** Special version of ComAssertMsg that evaluates eval and breaks if expr fails */
323 if (1) { ComAssertMsg(exp
[all...]

Completed in 42 milliseconds