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

123

/external/fio/oslib/
H A Dstrsep.h4 char *strsep(char **, const char *);
H A Dstrsep.c3 char *strsep(char **stringp, const char *delim) function
/external/syslinux/com32/lib/
H A Dstrtok.c14 return strsep(&holder, delim);
H A Dstrsep.c2 * strsep.c
7 char *strsep(char **stringp, const char *delim) function
/external/tcpdump/missing/
H A Dstrsep.c53 * If *stringp is NULL, strsep returns NULL.
56 strsep(char **stringp, const char *delim) function
/external/valgrind/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/tcpdump/
H A Dinterface.h65 extern char *strsep(char **, const char *);
H A Dprint-esp.c436 init = strsep(&line, " \t");
437 icookie = strsep(&line, " \t");
438 rcookie = strsep(&line, " \t");
439 authkey = strsep(&line, " \t");
440 enckey = strsep(&line, " \t");
497 spikey = strsep(&line, " \t");
553 spistr = strsep(&spikey, "@");
616 if ((line = strsep(&p, "\n,")) == NULL) {
/external/ltp/testcases/kernel/containers/share/
H A Dns_create.c90 while ((token = strsep(&argv[1], ","))) {
H A Dns_exec.c113 while ((token = strsep(&argv[2], ","))) {
/external/syslinux/com32/include/
H A Dstring.h41 __extern char *strsep(char **, const char *);
/external/toybox/toys/pending/
H A Dklogd.c93 if ((line_start = strsep(&start, "\n")) != NULL && start != NULL) used = 0;
H A Dcrontab.c89 char *ctoken = strsep(&src, ","), *dtoken;
95 dtoken = strsep(&ctoken, "-");
H A Dinit.c146 while ((extracted_token = strsep(&p,":"))) {
205 while ((extracted_command = strsep(&next_command," \t"))) {
/external/syslinux/gpxe/src/include/
H A Dstring.h38 char * strsep(char **s, const char *ct) __nonnull;
/external/syslinux/gpxe/src/core/
H A Dstringextra.c20 * - Added strsep() which will replace strtok() soon (because strsep() is
21 * reentrant and should be faster). Use only strsep() in new code, please.
181 * WARNING: strtok is deprecated, use strsep instead.
206 * strsep - Split a string into tokens
210 * strsep() updates @s to point after the token, ready for the next call.
216 char * strsep(char **s, const char *ct) function
/external/iptables/extensions/
H A Dlibxt_set.h155 ptr = strsep(&tmp, ",");
181 ptr = strsep(&tmp, ",");
/external/clang/test/Analysis/
H A Dstring.c1095 // strsep()
1098 char *strsep(char **stringp, const char *delim);
1101 strsep(&s, NULL); // expected-warning{{Null pointer argument in call to strsep()}}
1105 strsep(NULL, ""); // expected-warning{{Null pointer argument in call to strsep()}}
1110 char *result = strsep(&s, ""); // no-warning
1116 char *result = strsep(&s, ""); // no-warning
1122 strsep(&s, ""); // no-warning
1138 strsep(
[all...]
/external/elfutils/libdwfl/
H A Ddwfl_build_id_find_elf.c77 while (fd < 0 && (dir = strsep (&paths, ":")) != NULL)
H A Dfind-debuginfo.c226 while ((p = strsep (&path, ":")) != NULL)
/external/fio/
H A Dconfigure1101 # strsep() probe
1102 if test "$strsep" != "yes" ; then
1103 strsep="no"
1110 strsep(&string, "needle");
1114 if compile_prog "" "" "strsep"; then
1115 strsep="yes"
1117 echo "strsep $strsep"
2091 if test "$strsep" = "yes" ; then
/external/dhcpcd-6.8.2/dbus/
H A Ddbus-dict.c248 while ((tok = strsep(&p, " ")) != NULL) {
/external/iproute2/tc/
H A Dem_ipset.c171 ptr = strsep(&tmp, ",");
/external/tcpdump/win32/prj/
H A DGNUmakefile40 ../../missing/strsep.o \
/external/llvm/lib/Support/Unix/
H A DPath.inc137 while ((t = strsep(&s, ":")) != nullptr) {

Completed in 1334 milliseconds

123