Searched refs:maxbytes (Results 1 - 2 of 2) sorted by relevance
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/include/idn/ |
H A D | debug.h | 57 IDN_EXPORT char *idn__debug_hexstring(const char *s, int maxbytes); 58 IDN_EXPORT char *idn__debug_xstring(const char *s, int maxbytes); 59 IDN_EXPORT char *idn__debug_ucs4xstring(const unsigned long *s, int maxbytes); 61 int maxbytes); 62 IDN_EXPORT char *idn__debug_hexdata(const char *s, int length, int maxbytes); 63 IDN_EXPORT void idn__debug_hexdump(const char *s, int maxbytes);
|
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/lib/ |
H A D | debug.c | 65 idn__debug_hexstring(const char *s, int maxbytes) { argument 70 if (maxbytes > STRING_MAXBYTES) 71 maxbytes = STRING_MAXBYTES; 73 for (i = 0, p = buf; i < maxbytes; i += 3, s++) { 83 if (i >= maxbytes) 93 idn__debug_xstring(const char *s, int maxbytes) { argument 98 if (maxbytes > STRING_MAXBYTES) 99 maxbytes = STRING_MAXBYTES; 103 while (i < maxbytes) { 121 if (i >= maxbytes) 131 idn__debug_ucs4xstring(const unsigned long *s, int maxbytes) argument 183 idn__debug_utf16xstring(const unsigned short *s, int maxbytes) argument 221 idn__debug_hexdata(const char *s, int length, int maxbytes) argument [all...] |
Completed in 9 milliseconds