Home | History | Annotate | Download | only in utils

Lines Matching refs:cond

46 /* Check that 'cond' is true, and report an assertion failure otherwise */
47 #define _ANDROID_ASSERT(cond,...) \
49 if (!(cond)) { \
55 /* Check that 'cond' is boolean true (i.e. not 0), and report an assertion
125 # define AASSERT(cond,...) _ANDROID_ASSERT(cond,__VA_ARGS__)
151 # define AASSERT(cond,...) ((void)(cond), (void)0)
152 # define AASSERT_BOOL(cond,val) ((void)(cond), (void)0)
153 # define AASSERT_INT(cond,val) AASSERT_BOOL(cond,val)
154 # define AASSERT_PTR(cond,val) AASSERT_BOOL(cond,val)