/external/valgrind/memcheck/tests/ |
D | str_tester.c | 843 equal(strsep(&cp, ", "), "first", 1); /* Basic test. */ in test_strsep() 845 equal(strsep(&cp, ", "), "", 3); in test_strsep() 846 equal(strsep(&cp, ", "), "second", 4); in test_strsep() 847 equal(strsep(&cp, ", "), "", 5); in test_strsep() 848 equal(strsep(&cp, ", "), "third", 6); in test_strsep() 849 check(strsep(&cp, ", ") == NULL, 7); in test_strsep() 851 equal(strsep(&cp, ", "), "", 8); in test_strsep() 852 equal(strsep(&cp, ", "), "", 9); in test_strsep() 853 equal(strsep(&cp, ", "), "first", 10); /* Extra delims, 1 tok. */ in test_strsep() 854 equal(strsep(&cp, ", "), "", 11); in test_strsep() [all …]
|
/external/tcpdump/ |
D | print-esp.c | 354 init = strsep(&line, " \t"); in esp_print_decode_ikeline() 355 icookie = strsep(&line, " \t"); in esp_print_decode_ikeline() 356 rcookie = strsep(&line, " \t"); in esp_print_decode_ikeline() 357 authkey = strsep(&line, " \t"); in esp_print_decode_ikeline() 358 enckey = strsep(&line, " \t"); in esp_print_decode_ikeline() 415 spikey = strsep(&line, " \t"); in esp_print_decode_onesecret() 470 spistr = strsep(&spikey, "@"); in esp_print_decode_onesecret() 530 if ((line = strsep(&p, "\n,")) == NULL) { in esp_print_decodesecret()
|
D | Makefile.in | 329 missing/strsep.c \ 390 strsep.o: $(srcdir)/missing/strsep.c 391 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/strsep.c
|
D | interface.h | 65 extern char *strsep(char **, const char *);
|
/external/bison/lib/ |
D | string.in.h | 541 _GL_FUNCDECL_SYS (strsep, char *, 545 _GL_CXXALIAS_SYS (strsep, char *, 547 _GL_CXXALIASWARN (strsep); 549 # undef strsep 550 _GL_WARN_ON_USE (strsep, "strsep cannot work correctly on character strings " 555 # undef strsep 557 _GL_WARN_ON_USE (strsep, "strsep is unportable - "
|
/external/toybox/toys/posix/ |
D | cut.c | 74 char *ctoken = strsep(&list, ","), *dtoken; in parse_list() 81 if (*(dtoken = strsep(&ctoken, "-"))) { in parse_list() 163 field = strsep(&buff, delimiter); in do_fcut()
|
/external/bison/linux-lib/ |
D | string.h | 853 _GL_FUNCDECL_SYS (strsep, char *, 857 _GL_CXXALIAS_SYS (strsep, char *, 859 _GL_CXXALIASWARN (strsep); 861 # undef strsep 862 _GL_WARN_ON_USE (strsep, "strsep cannot work correctly on character strings " 867 # undef strsep 869 _GL_WARN_ON_USE (strsep, "strsep is unportable - "
|
/external/bison/darwin-lib/ |
D | string.h | 853 _GL_FUNCDECL_SYS (strsep, char *, 857 _GL_CXXALIAS_SYS (strsep, char *, 859 _GL_CXXALIASWARN (strsep); 861 # undef strsep 862 _GL_WARN_ON_USE (strsep, "strsep cannot work correctly on character strings " 867 # undef strsep 869 _GL_WARN_ON_USE (strsep, "strsep is unportable - "
|
/external/clang/test/Analysis/ |
D | string.c | 1036 char *strsep(char **stringp, const char *delim); 1039 strsep(&s, NULL); // expected-warning{{Null pointer argument in call to strsep()}} in strsep_null_delim() 1043 strsep(NULL, ""); // expected-warning{{Null pointer argument in call to strsep()}} in strsep_null_search() 1048 char *result = strsep(&s, ""); // no-warning in strsep_return_original_pointer() 1054 char *result = strsep(&s, ""); // no-warning in strsep_null_string() 1060 strsep(&s, ""); // no-warning in strsep_changes_input_pointer() 1076 strsep(&s, "b"); // no-warning in strsep_changes_input_string()
|
/external/iptables/extensions/ |
D | libxt_set.h | 111 ptr = strsep(&tmp, ","); in parse_dirs_v0() 137 ptr = strsep(&tmp, ","); in parse_dirs()
|
/external/fio/lib/ |
D | strsep.h | 4 char *strsep(char **, const char *);
|
D | strsep.c | 3 char *strsep(char **stringp, const char *delim) in strsep() function
|
/external/tcpdump/missing/ |
D | strsep.c | 56 strsep(char **stringp, const char *delim) in strsep() function
|
/external/fio/ |
D | configure | 901 strsep="no" 906 strsep(NULL, NULL); 911 strsep="yes" 913 echo "strsep $strsep" 1480 if test "$strsep" = "yes" ; then
|
/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 | 88 char *ctoken = strsep(&src, ","), *dtoken; in validate_component() 94 dtoken = strsep(&ctoken, "-"); in validate_component()
|
D | init.c | 146 while ((extracted_token = strsep(&p,":"))) { in inittab_parsing() 205 while ((extracted_command = strsep(&next_command," \t"))) { in run_command()
|
D | crond.c | 164 char *ctoken = strsep(&src, ","), *dtoken; in parse_and_fillarray() 170 dtoken = strsep(&ctoken, "-"); in parse_and_fillarray()
|
/external/elfutils/libdwfl/ |
D | dwfl_build_id_find_elf.c | 77 while (fd < 0 && (dir = strsep (&paths, ":")) != NULL) in __libdwfl_open_by_build_id()
|
/external/iproute2/tc/ |
D | em_ipset.c | 171 ptr = strsep(&tmp, ","); in parse_dirs()
|
/external/tcpdump/win32/prj/ |
D | GNUmakefile | 40 ../../missing/strsep.o \
|
/external/bison/m4/ |
D | string_h.m4 | 31 strdup strncat strndup strnlen strpbrk strsep strcasestr strtok_r
|
/external/libevent/ |
D | http.c | 205 strsep(char **s, const char *del) in strsep() function 1496 protocol = strsep(&line, " "); in evhttp_parse_response_line() 1499 number = strsep(&line, " "); in evhttp_parse_response_line() 1533 method = strsep(&line, " "); in evhttp_parse_request_line() 1536 uri = strsep(&line, " "); in evhttp_parse_request_line() 1539 version = strsep(&line, " "); in evhttp_parse_request_line() 1823 skey = strsep(&svalue, ":"); in evhttp_parse_headers() 2832 argument = strsep(&p, "&"); in evhttp_parse_query_impl() 2835 key = strsep(&value, "="); in evhttp_parse_query_impl()
|
/external/dhcpcd-6.8.2/dbus/ |
D | dbus-dict.c | 248 while ((tok = strsep(&p, " ")) != NULL) { in append_config_array()
|
/external/fio/crc/ |
D | test.c | 263 while ((name = strsep(&str, ",")) != NULL) { in get_test_mask()
|