HomeSort by relevance Sort by last modified time
    Searched refs:strsep (Results 1 - 25 of 72) sorted by null

1 2 3

  /external/fio/oslib/
strsep.h 4 char *strsep(char **, const char *);
strsep.c 3 char *strsep(char **stringp, const char *delim) function
  /external/syslinux/com32/lib/
strtok.c 14 return strsep(&holder, delim);
strsep.c 2 * strsep.c
7 char *strsep(char **stringp, const char *delim) function
  /bionic/libc/upstream-openbsd/lib/libc/string/
strsep.c 1 /* $OpenBSD: strsep.c,v 1.8 2015/08/31 02:53:57 guenther Exp $ */
43 * If *stringp is NULL, strsep returns NULL.
46 strsep(char **stringp, const char *delim) function
71 DEF_WEAK(strsep); variable
  /device/linaro/bootloader/edk2/StdLib/LibC/String/
strsep.c 40 static char sccsid[] = "@(#)strsep.c 8.1 (Berkeley) 6/4/93";
52 * If *stringp is NULL, strsep returns NULL.
55 strsep( function
String.inf 38 strsep.c
  /external/tcpdump/missing/
strsep.c 53 * If *stringp is NULL, strsep returns NULL.
56 strsep(char **stringp, const char *delim) function
  /system/core/libpackagelistparser/
packagelistparser.c 65 while ((token = strsep(&gids, ",\r\n"))) {
123 cur = strsep(&next, " \t\r\n");
134 cur = strsep(&next, " \t\r\n");
157 cur = strsep(&next, " \t\r\n");
177 cur = strsep(&next, " \t\r\n");
188 cur = strsep(&next, " \t\r\n");
199 cur = strsep(&next, " \t\r\n");
  /external/valgrind/memcheck/tests/
str_tester.c 841 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(&cp, ", "), "first", 10); /* Extra delims, 1 tok. *
    [all...]
  /external/tcpdump/
interface.h 65 extern char *strsep(char **, const char *);
print-esp.c 436 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) {
  /hardware/ril/reference-ril/
at_tok.c 80 ret = strsep(p_cur, "\"");
83 ret = strsep(p_cur, ",");
  /system/extras/su/
su.cpp 59 tok = strsep(&nexttok, ",");
61 tok = strsep(&nexttok, ",");
70 while ((gids_found < *gids_count) && (tok = strsep(&nexttok, ","))) {
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
getnetnamadr.c 98 while ((cp = strsep(&p, "\n \t,:;")) != NULL && *cp == '\0')
108 while ((cp = strsep(&p, "\n \t,:;")) != NULL && *cp == '\0')
gethostnamadr.c 103 while ((cp = strsep(&p, "\n \t,:;")) != NULL && *cp == '\0')
113 while ((cp = strsep(&p, "\n \t,:;")) != NULL && *cp == '\0')
  /external/ltp/testcases/kernel/containers/share/
ns_create.c 90 while ((token = strsep(&argv[1], ","))) {
ns_exec.c 113 while ((token = strsep(&argv[2], ","))) {
  /external/syslinux/com32/include/
string.h 41 __extern char *strsep(char **, const char *);
  /external/toybox/toys/pending/
klogd.c 93 if ((line_start = strsep(&start, "\n")) != NULL && start != NULL) used = 0;
  /external/syslinux/gpxe/src/include/
string.h 38 char * strsep(char **s, const char *ct) __nonnull;
  /system/core/libcutils/
sched_policy.cpp 206 if (!strsep(&next, ":")) {
210 if (!(found_subsys = strsep(&next, ":"))) {
219 if (!(grp = strsep(&next, ":"))) {
  /device/linaro/bootloader/edk2/StdLib/Include/
string.h 74 char *strsep (register char **stringp, register const char *delim);
483 * If *stringp is NULL, strsep returns NULL.
486 strsep(
  /external/syslinux/gpxe/src/core/
stringextra.c 20 * - 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/
libxt_set.h 155 ptr = strsep(&tmp, ",");
181 ptr = strsep(&tmp, ",");

Completed in 493 milliseconds

1 2 3