/illumos-gate/usr/src/lib/libc/inc/ |
H A D | thr_debug.h | 36 #define ASSERT(EX) (void)((EX) || (__assfail(#EX, __FILE__, __LINE__), 0)) macro 40 #define ASSERT(EX) ((void)0) macro
|
/illumos-gate/usr/src/lib/libumem/common/ |
H A D | misc.h | 100 #define ASSERT(assertion) (void)0 macro 102 #define ASSERT(assertion) (void)((assertion) || \ macro
|
/illumos-gate/usr/src/cmd/lp/model/netpr/ |
H A D | netdebug.h | 37 #define ASSERT(expr, str) \ macro
|
/illumos-gate/usr/src/lib/fm/libfmevent/common/ |
H A D | fmev_impl.h | 51 #define ASSERT(x) (assert(x)) macro 53 #define ASSERT(x) macro
|
/illumos-gate/usr/src/lib/fm/libfmd_snmp/common/ |
H A D | sunFM_impl.h | 46 #define ASSERT(x) ((void)((x) || sunFm_assert(#x, __FILE__, __LINE__))) macro 50 #define ASSERT(x) macro
|
/illumos-gate/usr/src/cmd/fm/fmd/common/ |
H A D | fmd_subr.h | 40 #define ASSERT(x) ((void)((x) || fmd_assert(#x, __FILE__, __LINE__))) macro 42 #define ASSERT(x) macro
|
/illumos-gate/usr/src/uts/common/sys/ |
H A D | debug.h | 48 * ASSERT(ex) causes a panic or debugger entry if expression ex is not 49 * true. ASSERT() is included only for debugging, and is a no-op in 51 * ASSERT and is evaluated on both debug and non-debug kernels. 57 #define ASSERT(EX) ((void)((EX) || assfail(#EX, __FILE__, __LINE__))) macro 59 #define ASSERT(x) ((void)0) macro 66 #define ASSERT64(x) ASSERT(x) 70 #define ASSERT32(x) ASSERT(x) 93 * ASSERT3() behaves like ASSERT() except that it is an explicit conditional,
|
/illumos-gate/usr/src/lib/efcode/include/fcode/ |
H A D | private.h | 85 #define ASSERT(x) if (!(x)) printf("%s:%d: ASSERT FAILED!!\n",\ macro 94 #define ASSERT(x) macro
|
/illumos-gate/usr/src/cmd/rcap/common/ |
H A D | utils.h | 72 #undef ASSERT macro 73 #define ASSERT(x) (assert(x)) macro 75 #undef ASSERT macro 76 #define ASSERT(x) ((void)0) macro
|
/illumos-gate/usr/src/cmd/mdb/common/mdb/ |
H A D | mdb_debug.h | 71 #define ASSERT(x) ((void)((x) || mdb_dassert(#x, __FILE__, __LINE__))) macro 73 #define ASSERT(x) macro
|
/illumos-gate/usr/src/cmd/fm/eversholt/common/ |
H A D | out.h | 74 #define ASSERT(cnd) \ macro 94 #define ASSERT(cnd) ((void)0) macro
|
/illumos-gate/usr/src/cmd/fm/fmdump/common/ |
H A D | fmdump.h | 46 #define ASSERT(x) (assert(x)) macro 48 #define ASSERT(x) macro
|
/illumos-gate/usr/src/uts/common/io/usb/clients/usbser/ |
H A D | usbser_rseq.c | 41 #define ASSERT assert macro 70 ASSERT(rval == RSEQ_OK); 97 ASSERT(rval == RSEQ_OK); 148 ASSERT(!"rseq_debug: incorrect debug scenario");
|
/illumos-gate/usr/src/boot/sys/boot/efi/include/ |
H A D | efidebug.h | 88 #define ASSERT(a) if(!(a)) DBGASSERT(a) macro 94 #define ASSERT(a) macro
|
/illumos-gate/usr/src/lib/scsi/libses/common/ |
H A D | libses_plugin.h | 92 #define ASSERT(x) VERIFY(x) macro 94 #define ASSERT(x) macro
|
/illumos-gate/usr/src/lib/scsi/libsmp/common/ |
H A D | libsmp_plugin.h | 53 #define ASSERT(x) VERIFY(x) macro 55 #define ASSERT(x) macro
|
/illumos-gate/usr/src/lib/libtnfprobe/ |
H A D | trace_funcs.c | 49 #define ASSERT(expr) assert(expr) macro 118 ASSERT(ops != NULL); 217 ASSERT(TAGARG_CHECK(tag_disp)); 308 ASSERT(TAGARG_CHECK(sched_offset));
|
/illumos-gate/usr/src/common/list/ |
H A D | list.c | 37 #define ASSERT(a) assert(a) macro 72 ASSERT(list); 73 ASSERT(size > 0); 74 ASSERT(size >= offset + sizeof (list_node_t)); 87 ASSERT(list); 88 ASSERT(list->list_head.list_next == node); 89 ASSERT(list->list_head.list_prev == node); 134 ASSERT(!list_empty(list)); 135 ASSERT(lold->list_next != NULL); 206 ASSERT(ds [all...] |
/illumos-gate/usr/src/cmd/spell/ |
H A D | malloc.c | 28 #define ASSERT(p) if(!(p))botch("p");else macro 36 #define ASSERT(p) macro 90 ASSERT(allock(allocp)); 97 ASSERT(q>p); 108 ASSERT(p==allocb); 150 ASSERT(allock(allocp)); 151 ASSERT(testbusy(p->ptr)); 153 ASSERT(p->ptr > allocp); 180 ASSERT(s>p); 185 ASSERT( [all...] |
/illumos-gate/usr/src/cmd/tip/ |
H A D | uucplock.c | 22 #define ASSERT(e, f, v) if (!(e)) {\ macro 28 #define ASSERT(e, f, v) if (!(e)) {\ macro 166 ASSERT(i < MAXLOCKS, "TOO MANY LOCKS %d", i); 170 ASSERT(p != NULL, "CAN NOT ALLOCATE FOR %s", name);
|
/illumos-gate/usr/src/lib/scsi/libscsi/common/ |
H A D | libscsi_impl.h | 86 #define ASSERT(x) VERIFY(x) macro 88 #define ASSERT(x) macro
|
/illumos-gate/usr/src/lib/libc/port/gen/ |
H A D | mallint.h | 46 #define ASSERT(p) ((void) ((p) || (abort(), 0))) macro 50 #define ASSERT(p) ((void)0) macro
|
/illumos-gate/usr/src/cmd/sort/common/ |
H A D | utility.h | 188 #define ASSERT(x) assert(x) macro 190 #define ASSERT(x) macro
|
/illumos-gate/usr/src/cmd/ldmad/ |
H A D | mdesc_mutable.h | 40 #define ASSERT(_s) assert(_s) macro 44 #define ASSERT(_s) macro
|
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/mech/ |
H A D | k5sealv3.c | 37 #define ASSERT assert macro 106 ASSERT(toktype != KG_TOK_SEAL_MSG || ctx->enc != 0); 107 ASSERT(ctx->big_endian == 0); 366 ASSERT(toktype != KG_TOK_SEAL_MSG || ctx->enc != 0); 367 ASSERT(ctx->big_endian == 0); 368 ASSERT(ctx->proto == 1);
|