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

1 2 3 4 5 6 7 8 910

  /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
  /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...]
  /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/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
string.c 22 * - Added strsep() which will replace strtok() soon (because strsep() is
23 * reentrant and should be faster). Use only strsep() in new code, please.
  /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
  /system/extras/su/
su.cpp 59 tok = strsep(&nexttok, ",");
61 tok = strsep(&nexttok, ",");
70 while ((gids_found < *gids_count) && (tok = strsep(&nexttok, ","))) {
  /external/syslinux/bios/com32/gfxboot/
gfxboot.elf 
gfxboot.c32 
  /external/syslinux/efi32/com32/gfxboot/
gfxboot.elf 
gfxboot.c32 
  /external/tcpdump/missing/
strsep.c 53 * If *stringp is NULL, strsep returns NULL.
56 strsep(char **stringp, const char *delim) function
  /external/syslinux/com32/include/
string.h 41 __extern char *strsep(char **, const char *);
  /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')
  /hardware/ril/reference-ril/
at_tok.c 80 ret = strsep(p_cur, "\"");
83 ret = strsep(p_cur, ",");
  /external/syslinux/gpxe/src/include/
string.h 38 char * strsep(char **s, const char *ct) __nonnull;
  /external/tcpdump/
interface.h 65 extern char *strsep(char **, const char *);
  /external/ltp/testcases/kernel/containers/share/
ns_create.c 90 while ((token = strsep(&argv[1], ","))) {
  /system/extras/simpleperf/testdata/
libsgmainso-6.4.36.so 

Completed in 995 milliseconds

1 2 3 4 5 6 7 8 910