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

1 2 3 4 5 6 7 8 91011>>

  /external/fio/lib/
strsep.h 4 char *strsep(char **, const char *);
strsep.c 3 char *strsep(char **stringp, const char *delim) function
  /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 66 while ((token = strsep(&gids, ",\r\n"))) {
124 cur = strsep(&next, " \t\r\n");
135 cur = strsep(&next, " \t\r\n");
158 cur = strsep(&next, " \t\r\n");
178 cur = strsep(&next, " \t\r\n");
189 cur = strsep(&next, " \t\r\n");
200 cur = strsep(&next, " \t\r\n");
  /bionic/libc/upstream-openbsd/lib/libc/string/
strsep.c 1 /* $OpenBSD: strsep.c,v 1.7 2014/02/05 20:42:32 stsp Exp $ */
43 * If *stringp is NULL, strsep returns NULL.
46 strsep(char **stringp, const char *delim) function
  /system/extras/su/
su.c 60 tok = strsep(&nexttok, ",");
62 tok = strsep(&nexttok, ",");
71 while ((gids_found < *gids_count) && (tok = strsep(&nexttok, ","))) {
  /external/tcpdump/missing/
strsep.c 53 * If *stringp is NULL, strsep returns NULL.
56 strsep(char **stringp, const char *delim) function
  /external/iptables/extensions/
libxt_set.h 111 ptr = strsep(&tmp, ",");
137 ptr = strsep(&tmp, ",");
  /hardware/ril/reference-ril/
at_tok.c 80 ret = strsep(p_cur, "\"");
83 ret = strsep(p_cur, ",");
  /external/toybox/toys/posix/
cut.c 74 char *ctoken = strsep(&list, ","), *dtoken;
81 if (*(dtoken = strsep(&ctoken, "-"))) {
163 field = strsep(&buff, delimiter);
  /external/bison/lib/
string.in.h 541 _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 for portability")
    [all...]
  /external/tcpdump/
print-esp.c 354 init = strsep(&line, " \t");
355 icookie = strsep(&line, " \t");
356 rcookie = strsep(&line, " \t");
357 authkey = strsep(&line, " \t");
358 enckey = strsep(&line, " \t");
415 spikey = strsep(&line, " \t");
470 spistr = strsep(&spikey, "@");
530 if ((line = strsep(&p, "\n,")) == NULL) {
Makefile.in 329 missing/strsep.c \
390 strsep.o: $(srcdir)/missing/strsep.c
391 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/strsep.c
  /system/core/libcutils/
sched_policy.c 180 if (!strsep(&next, ":")) {
184 if (!(found_subsys = strsep(&next, ":"))) {
193 if (!(grp = strsep(&next, ":"))) {
  /development/ndk/platforms/android-3/include/
string.h 80 extern char* strsep(char **, const char *);
  /external/bison/m4/
string_h.m4 31 strdup strncat strndup strnlen strpbrk strsep strcasestr strtok_r
  /external/toybox/toys/pending/
klogd.c 93 if ((line_start = strsep(&start, "\n")) != NULL && start != NULL) used = 0;
  /prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/
string.h 80 extern char* strsep(char **, const char *);
  /prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/
string.h 80 extern char* strsep(char **, const char *);
  /prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/
string.h 80 extern char* strsep(char **, const char *);
  /prebuilts/ndk/current/platforms/android-13/arch-arm/usr/include/
string.h 80 extern char* strsep(char **, const char *);
  /prebuilts/ndk/current/platforms/android-13/arch-mips/usr/include/
string.h 80 extern char* strsep(char **, const char *);
  /prebuilts/ndk/current/platforms/android-13/arch-x86/usr/include/
string.h 80 extern char* strsep(char **, const char *);
  /prebuilts/ndk/current/platforms/android-14/arch-arm/usr/include/
string.h 80 extern char* strsep(char **, const char *);
  /prebuilts/ndk/current/platforms/android-14/arch-mips/usr/include/
string.h 80 extern char* strsep(char **, const char *);

Completed in 765 milliseconds

1 2 3 4 5 6 7 8 91011>>