/bind-9.6-ESV-R11/contrib/zkt/ |
H A D | strlist.c | 51 ** prepstrlist (str, delim) 53 ** 'str' is a list of substrings delimeted by 'delim' 58 char *prepstrlist (const char *str, const char *delim) argument 76 if ( strchr (delim, *str) == NULL )
|
/bind-9.6-ESV-R11/unit/atf-src/atf-c/detail/ |
H A D | text.c | 97 atf_text_split(const char *str, const char *delim, atf_list_t *words) argument 114 ptr = strstr(iter, delim); 131 iter = ptr + strlen(delim);
|
H A D | text_test.c | 67 check_split(const char *str, const char *delim, const char *words[]) argument 73 printf("Splitting '%s' with delimiter '%s'\n", str, delim); 74 CE(atf_text_split(str, delim, &list));
|
H A D | tp_main.c | 308 char *delim = strchr(*tcname, ':'); local 309 if (delim != NULL) { 310 *delim = '\0'; 312 delim++; 313 if (strcmp(delim, "body") == 0) { 315 } else if (strcmp(delim, "cleanup") == 0) { 318 err = usage_error("Invalid test case part `%s'", delim);
|
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/detail/ |
H A D | text.cpp | 94 impl::split(const std::string& str, const std::string& delim) argument 100 newpos = str.find(delim, pos); 103 pos = newpos + delim.length();
|
H A D | parser.hpp | 194 tokenizer< IS >::add_delim(char delim, const token_type& type) argument 196 m_delims_map[delim] = type; 197 m_delims_str += delim;
|
/bind-9.6-ESV-R11/lib/isc/ |
H A D | string.c | 226 isc_string_separate(char **stringp, const char *delim) { argument 236 for (d = delim; (dc = *d) != '\0'; d++)
|
H A D | httpd.c | 386 int delim; local 399 delim = 1; 402 delim = 2; 465 p = s + delim;
|
/bind-9.6-ESV-R11/lib/lwres/ |
H A D | lwconfig.c | 396 int idx, delim; local 423 delim = getword(fp, word, sizeof(word)); 439 if (delim == EOF || delim == '\n') 442 delim = getword(fp, word, sizeof(word)); 477 int delim, res, idx; local 484 delim = getword(fp, word, sizeof(word)); 520 if (delim == EOF || delim == '\n') 523 delim 531 int delim; local [all...] |
H A D | getaddrinfo.c | 478 lwres_strsep(char **stringp, const char *delim) { argument 489 for (d = delim; (dc = *d) != '\0'; d++)
|
/bind-9.6-ESV-R11/bin/named/unix/ |
H A D | os.c | 803 next_token(char **stringp, const char *delim) { argument 807 res = strsep(stringp, delim);
|
/bind-9.6-ESV-R11/lib/dns/ |
H A D | rcode.c | 359 char *delim = memchr(text, '|', end - text); local 360 if (delim != NULL) 361 len = delim - text; 377 if (delim != NULL)
|
/bind-9.6-ESV-R11/bin/nsupdate/ |
H A D | nsupdate.c | 359 nsu_strsep(char **stringp, const char *delim) { argument 370 for (d = delim; (dc = *d) != '\0'; d++) { 380 for (d = delim; (dc = *d) != '\0'; d++) {
|
/bind-9.6-ESV-R11/bin/dig/ |
H A D | dighost.c | 377 next_token(char **stringp, const char *delim) { argument 381 res = strsep(stringp, delim);
|
/bind-9.6-ESV-R11/bin/named/ |
H A D | server.c | 4695 next_token(char **stringp, const char *delim) { argument 4699 res = strsep(stringp, delim);
|