Lines Matching refs:LEVEL
241 @abstract Flags indicating the task level.
257 #define DebugExtractTaskLevelInterruptLevel( LEVEL ) \
258 ( ( ( LEVEL ) &kDebugInterruptLevelMask ) >> kDebugInterruptLevelShift )
260 #define DebugExtractTaskLevelInterruptDepth( LEVEL ) \
261 ( ( ( LEVEL ) &kDebugInterruptDepthMask ) >> kDebugInterruptDepthShift )
274 @abstract Level used to control debug logging.
297 // Level Flags
306 @abstract Level used to control which events are logged.
1208 #define dlogv( LEVEL, FORMAT, LIST ) DebugPrintFVAList( ( LEVEL ), ( FORMAT ), ( LIST ) )
1210 #define dlogv( LEVEL, FORMAT, LIST )
1220 #define dlogmem( LEVEL, PTR, SIZE ) \
1221 DebugHexDump( ( LEVEL ), 0, NULL, 0, 0, NULL, 0, ( PTR ), ( PTR ), ( SIZE ), kDebugFlagsNone, NULL, 0 )
1223 #define dlogmem( LEVEL, PTR, SIZE )
1532 #define dloghex( LEVEL, INDENT, LABEL, LABEL_SIZE, LABEL_MIN_SIZE, TYPE, TYPE_SIZE, DATA_START, DATA, DATA_SIZE, FLAGS, BUFFER, BUFFER_SIZE ) \
1533 DebugHexDump( ( LEVEL ), (INDENT), ( LABEL ), ( LABEL_SIZE ), ( LABEL_MIN_SIZE ), ( TYPE ), ( TYPE_SIZE ), \
1536 #define dloghex( LEVEL, INDENT, LABEL, LABEL_SIZE, LABEL_MIN_SIZE, TYPE, TYPE_SIZE, DATA_START, DATA, DATA_SIZE, FLAGS, BUFFER, BUFFER_SIZE )
1542 @abstract Returns the current task level.
1544 @result Current task level
1550 kDebugInterruptLevelMask - Indicates the current interrupt level (> 0 means interrupt time).
1556 kDebugInterruptDepthMask - 0 means task level, 1 means in interrupt, > 1 means in nested interrupt.
1561 DebugExtractTaskLevelInterruptDepth() - Macro to extract interrupt depth from task level value.