/external/valgrind/main/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 | 325 init = strsep(&line, " \t"); in esp_print_decode_ikeline() 326 icookie = strsep(&line, " \t"); in esp_print_decode_ikeline() 327 rcookie = strsep(&line, " \t"); in esp_print_decode_ikeline() 328 authkey = strsep(&line, " \t"); in esp_print_decode_ikeline() 329 enckey = strsep(&line, " \t"); in esp_print_decode_ikeline() 386 spikey = strsep(&line, " \t"); in esp_print_decode_onesecret() 444 spistr = strsep(&spikey, "@"); in esp_print_decode_onesecret() 512 if ((line = strsep(&p, "\n,")) == NULL) { in esp_print_decodesecret()
|
D | Makefile.in | 248 missing/strsep.c \ 313 strsep.o: $(srcdir)/missing/strsep.c 314 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/strsep.c
|
/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/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/qemu/android/utils/ |
D | system.h | 103 # undef strsep 104 # define strsep win32_strsep macro
|
/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/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/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/iptables/extensions/ |
D | libxt_set.h | 111 ptr = strsep(&tmp, ","); in parse_dirs_v0() 137 ptr = strsep(&tmp, ","); in parse_dirs()
|
/external/tcpdump/missing/ |
D | strsep.c | 59 strsep(char **stringp, const char *delim) in strsep() function
|
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
D | strsep.c | 59 return strsep(stringp, delim); in yasm__strsep()
|
D | Makefile.inc | 23 libyasm_a_SOURCES += libyasm/strsep.c
|
/external/fio/ |
D | configure | 873 strsep="no" 878 strsep(NULL, NULL); 883 strsep="yes" 885 echo "strsep $strsep" 1262 if test "$strsep" = "yes" ; then
|
/external/qemu/proxy/ |
D | proxy_http_rewriter.c | 443 method = strsep(&p, " "); in rewrite_connection_read_request() 449 uri = strsep(&p, " "); in rewrite_connection_read_request() 455 version = strsep(&p, " "); in rewrite_connection_read_request() 490 protocol = strsep(&p, " "); in rewrite_connection_read_reply() 496 number = strsep(&p, " "); in rewrite_connection_read_reply() 546 key = strsep(&value, ":"); in rewrite_connection_read_headers()
|
/external/chromium_org/third_party/libevent/ |
D | http.c | 226 strsep(char **s, const char *del) in strsep() function 1218 protocol = strsep(&line, " "); in evhttp_parse_response_line() 1221 number = strsep(&line, " "); in evhttp_parse_response_line() 1261 method = strsep(&line, " "); in evhttp_parse_request_line() 1264 uri = strsep(&line, " "); in evhttp_parse_request_line() 1267 version = strsep(&line, " "); in evhttp_parse_request_line() 1511 skey = strsep(&svalue, ":"); in evhttp_parse_headers() 2134 strsep(&argument, "?"); in evhttp_parse_query() 2139 argument = strsep(&p, "&"); in evhttp_parse_query() 2142 key = strsep(&value, "="); in evhttp_parse_query()
|
/external/elfutils/0.153/libdwfl/ |
D | dwfl_build_id_find_elf.c | 97 while (fd < 0 && (dir = strsep (&path, ":")) != NULL) in __libdwfl_open_by_build_id()
|
/external/chromium_org/third_party/yasm/source/patched-yasm/ |
D | util.h | 101 #define yasm__strsep(a, b) strsep(a, b)
|
D | splint.sh | 47 libyasm/strsep.c \
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
D | compat.cpp | 113 while((next = strsep(&full, delim)) != NULL) { in SplitToVector()
|
/external/qemu/distrib/libselinux/src/ |
D | android.c | 910 cur = strsep(&next, " \t\n"); in package_info_init() 916 cur = strsep(&next, " \t\n"); in package_info_init() 922 cur = strsep(&next, " \t\n"); in package_info_init() 926 cur = strsep(&next, " \t\n"); in package_info_init() 932 cur = strsep(&next, " \t\n"); in package_info_init()
|
/external/libselinux/src/ |
D | android.c | 936 cur = strsep(&next, " \t\n"); in package_info_init() 942 cur = strsep(&next, " \t\n"); in package_info_init() 948 cur = strsep(&next, " \t\n"); in package_info_init() 952 cur = strsep(&next, " \t\n"); in package_info_init() 958 cur = strsep(&next, " \t\n"); in package_info_init()
|
/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
|