/external/openssh/ |
D | match.c | 280 for ((p = strsep(&sp, SEP)), i=0; p && *p != '\0'; in match_list() 281 (p = strsep(&sp, SEP)), i++) { in match_list() 289 for ((p = strsep(&cp, SEP)), i=0; p && *p != '\0'; in match_list() 290 (p = strsep(&cp, SEP)), i++) { in match_list() 334 while ((cp = strsep(&tmp, ",")) != NULL) { in filter_list()
|
D | dh.c | 69 arg = strsep(&cp, " "); /* type */ in parse_prime() 78 arg = strsep(&cp, " "); /* tests */ in parse_prime() 88 arg = strsep(&cp, " "); /* tries */ in parse_prime() 96 strsize = strsep(&cp, " "); /* size */ in parse_prime() 105 gen = strsep(&cp, " "); /* gen */ in parse_prime() 108 prime = strsep(&cp, " "); /* prime */ in parse_prime()
|
D | compat.c | 172 for ((p = strsep(&q, SEP)); p && *p != '\0'; (p = strsep(&q, SEP))) { in proto_spec()
|
D | mac.c | 253 for ((p = strsep(&cp, MAC_SEP)); p && *p != '\0'; in mac_valid() 254 (p = strsep(&cp, MAC_SEP))) { in mac_valid()
|
D | addrmatch.c | 389 while ((cp = strsep(&list, ",")) != NULL) { in addr_match_list() 449 while ((cp = strsep(&list, ",")) != NULL) { in addr_match_cidr_list()
|
D | cipher.c | 228 for ((p = strsep(&cp, CIPHER_SEP)); p && *p != '\0'; in ciphers_valid() 229 (p = strsep(&cp, CIPHER_SEP))) { in ciphers_valid()
|
D | kex.c | 163 for ((p = strsep(&cp, ",")); p && *p != '\0'; in kex_names_valid() 164 (p = strsep(&cp, ","))) { in kex_names_valid() 199 for ((p = strsep(&cp, ",")); p && *p != '\0'; (p = strsep(&cp, ","))) { in kex_names_cat() 280 while ((cp = strsep(&patterns, ",")) != NULL) { in kex_assemble_names()
|
/external/tcpdump/ |
D | print-esp.c | 436 init = strsep(&line, " \t"); in esp_print_decode_ikeline() 437 icookie = strsep(&line, " \t"); in esp_print_decode_ikeline() 438 rcookie = strsep(&line, " \t"); in esp_print_decode_ikeline() 439 authkey = strsep(&line, " \t"); in esp_print_decode_ikeline() 440 enckey = strsep(&line, " \t"); in esp_print_decode_ikeline() 497 spikey = strsep(&line, " \t"); in esp_print_decode_onesecret() 553 spistr = strsep(&spikey, "@"); in esp_print_decode_onesecret() 616 if ((line = strsep(&p, "\n,")) == NULL) { in esp_print_decodesecret()
|
D | interface.h | 65 extern char *strsep(char **, const char *);
|
D | Makefile.in | 351 missing/strsep.c \ 396 strsep.o: $(srcdir)/missing/strsep.c 397 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/strsep.c
|
/external/clang/test/Analysis/ |
D | string.c | 1098 char *strsep(char **stringp, const char *delim); 1101 strsep(&s, NULL); // expected-warning{{Null pointer argument in call to strsep()}} in strsep_null_delim() 1105 strsep(NULL, ""); // expected-warning{{Null pointer argument in call to strsep()}} in strsep_null_search() 1110 char *result = strsep(&s, ""); // no-warning in strsep_return_original_pointer() 1116 char *result = strsep(&s, ""); // no-warning in strsep_null_string() 1122 strsep(&s, ""); // no-warning in strsep_changes_input_pointer() 1138 strsep(&s, "b"); // no-warning in strsep_changes_input_string()
|
/external/tcpdump/missing/ |
D | strsep.c | 56 strsep(char **stringp, const char *delim) in strsep() function
|
/external/openssh/openbsd-compat/ |
D | strsep.c | 53 strsep(char **stringp, const char *delim) in strsep() function
|
D | Makefile.in | 60 strsep.o \
|
D | openbsd-compat.h | 161 char *strsep(char **stringp, const char *delim);
|
/external/iptables/extensions/ |
D | libxt_set.h | 149 ptr = strsep(&tmp, ","); in parse_dirs_v0() 175 ptr = strsep(&tmp, ","); in parse_dirs()
|
/external/ltp/testcases/kernel/containers/share/ |
D | ns_create.c | 90 while ((token = strsep(&argv[1], ","))) { in main()
|
D | ns_exec.c | 113 while ((token = strsep(&argv[2], ","))) { in main()
|
/external/llvm-project/clang/test/Analysis/ |
D | string.c | 1217 char *strsep(char **stringp, const char *delim); 1220 strsep(&s, NULL); // expected-warning{{Null pointer passed as 2nd argument to strsep()}} in strsep_null_delim() 1224 strsep(NULL, ""); // expected-warning{{Null pointer passed as 1st argument to strsep()}} in strsep_null_search() 1229 char *result = strsep(&s, ""); // no-warning in strsep_return_original_pointer() 1235 char *result = strsep(&s, ""); // no-warning in strsep_null_string() 1241 strsep(&s, ""); // no-warning in strsep_changes_input_pointer() 1257 strsep(&s, "b"); // no-warning in strsep_changes_input_string()
|
/external/toybox/toys/pending/ |
D | klogd.c | 93 if ((line_start = strsep(&start, "\n")) != NULL && start != NULL) used = 0; in klogd_main()
|
D | crontab.c | 89 char *ctoken = strsep(&src, ","), *dtoken; in validate_component() 95 dtoken = strsep(&ctoken, "-"); in validate_component()
|
D | init.c | 146 while ((extracted_token = strsep(&p,":"))) { in inittab_parsing() 224 while ((extracted_command = strsep(&next_command," \t"))) { in run_command()
|
/external/elfutils/libdwfl/ |
D | dwfl_build_id_find_elf.c | 85 while (fd < 0 && (dir = strsep (&paths, ":")) != NULL) in __libdwfl_open_by_build_id()
|
/external/ltp/testcases/kernel/tracing/pt_test/ |
D | pt_test.c | 87 strsep(&value, delims); in intel_pt_pmu_value()
|
/external/iproute2/tc/ |
D | em_ipset.c | 171 ptr = strsep(&tmp, ","); in parse_dirs()
|