Searched refs:strsep (Results 1 - 25 of 56) sorted by relevance

123

/external/fio/lib/
H A Dstrsep.h4 char *strsep(char **, const char *);
H A Dstrsep.c3 char *strsep(char **stringp, const char *delim) function
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dstrsep.c2 * strsep() implementation for systems that don't have it.
36 static char sccsid[] = "@(#)strsep.c 8.1 (Berkeley) 6/4/93";
52 * If *stringp is NULL, strsep returns NULL.
59 return strsep(stringp, delim);
/external/tcpdump/missing/
H A Dstrsep.c36 "@(#) $Header: /tcpdump/master/tcpdump/missing/strsep.c,v 1.3 2003-03-25 08:33:48 guy Exp $ (LBL)";
56 * If *stringp is NULL, strsep returns NULL.
59 strsep(char **stringp, const char *delim) function
/external/valgrind/main/memcheck/tests/
H A Dstr_tester.c841 it = "strsep";
843 equal(strsep(&cp, ", "), "first", 1); /* Basic test. */
845 equal(strsep(&cp, ", "), "", 3);
846 equal(strsep(&cp, ", "), "second", 4);
847 equal(strsep(&cp, ", "), "", 5);
848 equal(strsep(&cp, ", "), "third", 6);
849 check(strsep(&cp, ", ") == NULL, 7);
851 equal(strsep(&cp, ", "), "", 8);
852 equal(strsep(&cp, ", "), "", 9);
853 equal(strsep(
[all...]
/external/iptables/extensions/
H A Dlibxt_set.h111 ptr = strsep(&tmp, ",");
137 ptr = strsep(&tmp, ",");
/external/qemu/android/utils/
H A Dsystem.h100 /** Handle strsep() on Win32
103 # undef strsep macro
104 # define strsep win32_strsep macro
/external/tcpdump/
H A Dprint-esp.c325 init = strsep(&line, " \t");
326 icookie = strsep(&line, " \t");
327 rcookie = strsep(&line, " \t");
328 authkey = strsep(&line, " \t");
329 enckey = strsep(&line, " \t");
386 spikey = strsep(&line, " \t");
444 spistr = strsep(&spikey, "@");
512 if ((line = strsep(&p, "\n,")) == NULL) {
/external/bison/lib/
H A Dstring.in.h541 _GL_FUNCDECL_SYS (strsep, char *,
545 _GL_CXXALIAS_SYS (strsep, char *,
547 _GL_CXXALIASWARN (strsep); variable
549 # undef strsep macro
550 _GL_WARN_ON_USE (strsep, "strsep cannot work correctly on character strings "
555 # undef strsep macro
557 _GL_WARN_ON_USE (strsep, "strsep is unportable - "
558 "use gnulib module strsep fo
[all...]
/external/elfutils/0.153/libdwfl/
H A Ddwfl_build_id_find_elf.c97 while (fd < 0 && (dir = strsep (&path, ":")) != NULL)
H A Dfind-debuginfo.c201 while ((p = strsep (&path, ":")) != NULL)
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dcompat.cpp113 while((next = strsep(&full, delim)) != NULL) {
/external/fio/
H A Dconfigure872 # strsep() probe
873 strsep="no"
878 strsep(NULL, NULL);
882 if compile_prog "" "" "strsep"; then
883 strsep="yes"
885 echo "strsep $strsep"
1262 if test "$strsep" = "yes" ; then
/external/bison/darwin-lib/
H A Dstring.h853 _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 macro
869 _GL_WARN_ON_USE (strsep, "strsep is unportable - "
870 "use gnulib module strsep fo
[all...]
/external/bison/linux-lib/
H A Dstring.h853 _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 macro
869 _GL_WARN_ON_USE (strsep, "strsep is unportable - "
870 "use gnulib module strsep fo
[all...]
/external/clang/test/Analysis/
H A Dstring.c1033 // strsep()
1036 char *strsep(char **stringp, const char *delim);
1039 strsep(&s, NULL); // expected-warning{{Null pointer argument in call to strsep()}}
1043 strsep(NULL, ""); // expected-warning{{Null pointer argument in call to strsep()}}
1048 char *result = strsep(&s, ""); // no-warning
1054 char *result = strsep(&s, ""); // no-warning
1060 strsep(&s, ""); // no-warning
1076 strsep(
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/
H A Dutil.h101 #define yasm__strsep(a, b) strsep(a, b)
H A Dsplint.sh47 libyasm/strsep.c \
/external/qemu/proxy/
H A Dproxy_http_rewriter.c16 #include "android/utils/system.h" /* strsep */
443 method = strsep(&p, " ");
449 uri = strsep(&p, " ");
455 version = strsep(&p, " ");
490 protocol = strsep(&p, " ");
496 number = strsep(&p, " ");
546 key = strsep(&value, ":");
/external/tcpdump/win32/prj/
H A DGNUmakefile40 ../../missing/strsep.o \
/external/chromium_org/third_party/libevent/
H A Dhttp.c223 /* strsep replacement for platforms that lack it. Only works if
226 strsep(char **s, const char *del) function
1218 protocol = strsep(&line, " ");
1221 number = strsep(&line, " ");
1261 method = strsep(&line, " ");
1264 uri = strsep(&line, " ");
1267 version = strsep(&line, " ");
1511 skey = strsep(&svalue, ":");
2134 strsep(&argument, "?");
2139 argument = strsep(
[all...]
/external/libselinux/src/
H A Dandroid.c936 cur = strsep(&next, " \t\n");
942 cur = strsep(&next, " \t\n");
948 cur = strsep(&next, " \t\n");
952 cur = strsep(&next, " \t\n");
958 cur = strsep(&next, " \t\n");
/external/qemu/distrib/libselinux/src/
H A Dandroid.c910 cur = strsep(&next, " \t\n");
916 cur = strsep(&next, " \t\n");
922 cur = strsep(&next, " \t\n");
926 cur = strsep(&next, " \t\n");
932 cur = strsep(&next, " \t\n");
/external/fio/crc/
H A Dtest.c328 while ((name = strsep(&str, ",")) != NULL) {
/external/fio/profiles/
H A Dact.c282 dev = strsep(&device_names, ",");

Completed in 3343 milliseconds

123