Searched refs:DebugIsPrint (Results 1 - 1 of 1) sorted by relevance

/macosx-10.10.1/mDNSResponder-561.1.1/mDNSShared/
H A DDebugServices.c73 #define DebugIsPrint( C ) ( ( ( C ) >= 0x20 ) && ( ( C ) <= 0x7E ) ) macro
1433 c = (int)( n & 0xFF); *--s = (char)(DebugIsPrint(c) ? c : '^');
1434 c = (int)((n >> 8) & 0xFF); *--s = (char)(DebugIsPrint(c) ? c : '^');
1435 c = (int)((n >> 16) & 0xFF); *--s = (char)(DebugIsPrint(c) ? c : '^');
1436 c = (int)((n >> 24) & 0xFF); *--s = (char)(DebugIsPrint(c) ? c : '^');
1497 { c = u[i]; *s++ = (char)(DebugIsPrint(c) ? c : '^'); i++; }
1500 { c = ((a[0] << 8) | a[1]) & 0xFF; *s++ = (char)(DebugIsPrint(c) ? c : '^'); i++; a += 2; }
1503 { c = ((a[1] << 8) | a[0]) & 0xFF; *s++ = (char)(DebugIsPrint(c) ? c : '^'); i++; a += 2; }
2236 if( !DebugIsPrint( c ) )

Completed in 141 milliseconds