Home
last modified time | relevance | path

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

/netbsd/src/external/apache2/mDNSResponder/dist/mDNSShared/
DDebugServices.c69 #define DebugIsPrint( C ) ( ( ( C ) >= 0x20 ) && ( ( C ) <= 0x7E ) ) macro
1389 c = (int)( n & 0xFF); *--s = (char)(DebugIsPrint(c) ? c : '^'); in DebugSNPrintFVAList()
1390 c = (int)((n >> 8) & 0xFF); *--s = (char)(DebugIsPrint(c) ? c : '^'); in DebugSNPrintFVAList()
1391 c = (int)((n >> 16) & 0xFF); *--s = (char)(DebugIsPrint(c) ? c : '^'); in DebugSNPrintFVAList()
1392 c = (int)((n >> 24) & 0xFF); *--s = (char)(DebugIsPrint(c) ? c : '^'); in DebugSNPrintFVAList()
1453 { c = u[i]; *s++ = (char)(DebugIsPrint(c) ? c : '^'); i++; } in DebugSNPrintFVAList()
1456 … { c = ((a[0] << 8) | a[1]) & 0xFF; *s++ = (char)(DebugIsPrint(c) ? c : '^'); i++; a += 2; } in DebugSNPrintFVAList()
1459 … { c = ((a[1] << 8) | a[0]) & 0xFF; *s++ = (char)(DebugIsPrint(c) ? c : '^'); i++; a += 2; } in DebugSNPrintFVAList()
2195 if( !DebugIsPrint( c ) ) in DebugHexDump()