Searched defs:tok (Results 1 - 4 of 4) sorted by relevance
/bind-9.6-ESV-R11/contrib/zkt/ |
H A D | ncparse.c | 69 int tok; member in struct:KeyWords 90 static const char *tok2str (int tok) argument 95 while ( kw[i].name && kw[i].tok != tok ) 111 return kw[i].tok; 199 int tok; local 220 while ( (tok = gettok (fp, strval, sizeof strval)) != EOF ) 222 if ( tok > 0 && tok < 256 ) 224 error ("parse_namedconf: token found with value %-10d: %c\n", tok, to [all...] |
H A D | zconf.c | 636 char *tok, *toksave; local 661 tok = strtok_r (buf, STRCONFIG_DELIMITER, &toksave); 662 while ( tok ) 665 parseconfigline (tok, line, z); 666 tok = strtok_r (NULL, STRCONFIG_DELIMITER, &toksave);
|
/bind-9.6-ESV-R11/lib/lwres/ |
H A D | getaddrinfo.c | 504 char *order, *tok; local 523 tok = lwres_strsep(&order, ":"); 524 if (strcasecmp(tok, "inet6") == 0) { 528 } else if (strcasecmp(tok, "inet") == 0 || 529 strcasecmp(tok, "inet4") == 0) {
|
/bind-9.6-ESV-R11/bin/tests/names/ |
H A D | t_names.c | 2077 char *tok; local 2104 tok = Tokens[5]; 2106 if (! strcmp(tok, "ISC_R_SUCCESS")) 2108 else if (! strcmp(tok, "ISC_R_NOSPACE")) 2110 else if (! strcmp(tok, "DNS_R_BADLABELTYPE")) 2112 else if (! strcmp(tok, "DNS_R_FORMERR")) 2114 else if (! strcmp(tok, "DNS_R_BADPOINTER")) 2116 else if (! strcmp(tok, "ISC_R_UNEXPECTEDEND")) 2118 else if (! strcmp(tok, "DNS_R_TOOMANYHOPS")) 2120 else if (! strcmp(tok, "DNS_R_DISALLOWE [all...] |
Completed in 2776 milliseconds