Home | History | Annotate | Download | only in mDNSShared

Lines Matching refs:check

138 	For Mac OS X kernel development, iDebug is enabled by default because we can dynamically check for the presence 
480 @abstract Performs a compile-time check of something such as the size of an int.
508 @abstract Perform a compile-time check, suitable for placement in code, of something such as the size of an int.
533 #pragma mark == check macros ==
537 /*! @defined check
539 @abstract Check that an expression is true (non-zero).
546 Code inside check() statements is not compiled into production builds.
550 #undef check
552 #if( !defined( check ) )
554 #define check( X ) \
563 #define check( X )
570 @abstract Check that an expression is true (non-zero) with an explanation.
602 @abstract Check that an error code is noErr (0).
637 @abstract Check that an error code is noErr (0) with an explanation.
672 @abstract Check a condition and prints errno (if non-zero) to the log.
708 check( !( ( (uintptr_t)( P1 ) >= (uintptr_t)( P2 ) ) && \
710 check( !( ( (uintptr_t)( P2 ) >= (uintptr_t)( P1 ) ) && \
1089 #define ensure( X ) check( X )