/bind-9.6-ESV-R11/lib/isc/ |
H A D | parseint.c | 33 isc_parse_uint32(isc_uint32_t *uip, const char *string, int base) { argument 37 if (! isalnum((unsigned char)(string[0]))) 40 n = strtoul(string, &e, base); 56 isc_parse_uint16(isc_uint16_t *uip, const char *string, int base) { argument 59 result = isc_parse_uint32(&val, string, base); 69 isc_parse_uint8(isc_uint8_t *uip, const char *string, int base) { argument 72 result = isc_parse_uint32(&val, string, base);
|
H A D | string.c | 56 #include <isc/string.h> 227 char *string = *stringp; local 232 if (string == NULL) 235 for (s = string; (sc = *s) != '\0'; s++) 240 return (string); 243 return (string);
|
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/lib/ |
H A D | mapselector.c | 52 #include <string.h> 73 static void string_ascii_tolower(char *string); 308 * If default mapper has not been registered, copy the string. 368 string_ascii_tolower(char *string) { argument 371 for (p = (unsigned char *) string; *p != '\0'; p++) {
|
/bind-9.6-ESV-R11/lib/lwres/ |
H A D | lwresutil.c | 23 * lwres_string_parse() retrieves a DNS-encoded string starting the 26 * encoded string is returned via *c and the length of that string is 28 * the character following the string length, the encoded string, and 80 * less space than expected for the components of the encoded string 103 #include <string.h> 145 * Set the pointer to this string to the right place, then 161 /*% Retrieves a DNS-encoded string. */ 165 * The "current" pointer in "b" point to an encoded string 181 char *string; local [all...] |
H A D | getaddrinfo.c | 31 * string: a dotted decimal IPv4 address or an IPv6 address. servname is 75 * lwres_getaddrinfo() will return a null-terminated string 94 * should be treated as a numeric string defining an IPv4 or IPv6 138 #include <isc/string.h> 479 char *string = *stringp; local 484 if (string == NULL) 487 for (s = string; *s != '\0'; s++) { 493 return (string); 497 return (string);
|
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/ |
H A D | macros_test.cpp | 136 const std::string element = get_config_var("value"); 138 std::set< std::string > collection; 155 const std::string regexp = get_config_var("regexp"); 156 const std::string string = get_config_var("string"); local 159 ATF_REQUIRE_MATCH(regexp, string); 170 const std::string element = get_config_var("value"); 172 std::set< std::string > collection; 476 const char *string; member in struct:test [all...] |
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/lib/tests/ |
H A D | testsuite.c | 51 #include <string.h> 85 static char *make_hex_string(const char *string); 86 static char *make_hex_ucs4string(const unsigned long *string); 485 make_hex_string(const char *string) { argument 491 hex_string = (char *)malloc((strlen(string)) * 4 + 1); 495 for (src = string, dst = hex_string; *src != '\0'; src++) { 513 make_hex_ucs4string(const unsigned long *string) { argument 519 hex_string = (char *)malloc((idn_ucs4_strlen(string)) * 8 + 1); 523 for (src = string, dst = hex_string; *src != '\0'; src++) {
|
/bind-9.6-ESV-R11/lib/isccfg/include/isccfg/ |
H A D | grammar.h | 152 isc_textregion_t string; /*%< null terminated, too */ member in union:cfg_obj::__anon210 376 /*%< Print the null-terminated string 's' */ 452 /*%< Return true iff the string 's' is one of the strings in 'enums' */
|
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/detail/ |
H A D | parser.cpp | 43 impl::parse_error::parse_error(size_t line, std::string msg) : 45 std::pair< size_t, std::string >(line, msg) 68 impl::parse_error::operator std::string(void) 105 impl::format_error::format_error(const std::string& w) : 121 const std::string& p_text) : 143 const std::string& 171 impl::header_entry::header_entry(const std::string& n, const std::string& v, 179 const std::string& 185 const std::string [all...] |
/bind-9.6-ESV-R11/bin/win32/BINDInstall/ |
H A D | BINDInstallDlg.cpp | 80 _xexception(UINT string, ...); 85 _xexception::_xexception(UINT string, ...) argument 90 format.LoadString(string); 92 va_start(va, string); 1068 * Set the text in the current operation field - use a string table string 1150 * Display message boxes with variable args, using string table strings
|
/bind-9.6-ESV-R11/lib/dns/ |
H A D | gen.c | 37 #include <string.h> 487 HASH(char *string) { argument 491 n = strlen(string); 496 a = tolower((unsigned char)string[0]); 497 b = tolower((unsigned char)string[n - 1]);
|
/bind-9.6-ESV-R11/bin/nsupdate/ |
H A D | nsupdate.c | 47 #include <isc/string.h> 360 char *string = *stringp; local 365 if (string == NULL) 368 for (; *string != '\0'; string++) { 369 sc = *string; 378 for (s = string; *s != '\0'; s++) { 384 return (string); 389 return (string);
|
/bind-9.6-ESV-R11/bin/dig/ |
H A D | dighost.c | 33 #include <string.h> 85 #include <isc/string.h> 389 count_dots(char *string) { argument 393 s = string;
|