/external/fio/lib/ |
strsep.h | 4 char *strsep(char **, const char *);
|
strsep.c | 3 char *strsep(char **stringp, const char *delim) function
|
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
strsep.c | 2 * 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/valgrind/main/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...] |
/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
|
/external/qemu/android/utils/ |
system.h | 100 /** Handle strsep() on Win32 103 # undef strsep macro 104 # define strsep win32_strsep macro
|
/external/tcpdump/missing/ |
strsep.c | 36 "@(#) $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
|
/system/extras/su/ |
su.c | 65 tok = strsep(&nexttok, ","); 67 tok = strsep(&nexttok, ","); 76 while ((gids_found < *gids_count) && (tok = strsep(&nexttok, ","))) {
|
/external/iptables/extensions/ |
libxt_set.h | 111 ptr = strsep(&tmp, ","); 137 ptr = strsep(&tmp, ",");
|
/external/tcpdump/ |
print-esp.c | 325 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) {
|
/hardware/ril/reference-ril/ |
at_tok.c | 80 ret = strsep(p_cur, "\""); 83 ret = strsep(p_cur, ",");
|
/external/chromium_org/third_party/cython/src/Cython/Includes/libc/ |
string.pxd | 50 char *strsep (char **string_ptr, const char *delimiter)
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
string.in.h | 316 extern char *strsep (char **restrict __stringp, char const *restrict __delim); 319 # undef strsep macro 320 # define strsep(s,d) \ macro 321 (GL_LINK_WARNING ("strsep cannot work correctly on character strings " \ 324 strsep (s, d)) 327 # undef strsep macro 328 # define strsep(s,d) \ macro 329 (GL_LINK_WARNING ("strsep is unportable - " \ 330 "use gnulib module strsep for portability"), \ 331 strsep (s, d) [all...] |
/system/core/libcutils/ |
sched_policy.c | 162 if (!strsep(&next, ":")) { 166 if (!(subsys = strsep(&next, ":"))) { 175 if (!(grp = strsep(&next, ":"))) {
|
/external/chromium_org/third_party/yasm/source/patched-yasm/ |
splint.sh | 47 libyasm/strsep.c \
|
/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...] |
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/lib/ |
liblog.so | |
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/lib/ |
liblog.so | |
/prebuilts/ndk/4/platforms/android-5/arch-arm/usr/lib/ |
liblog.so | |
/prebuilts/ndk/4/platforms/android-8/arch-arm/usr/lib/ |
liblog.so | |
/prebuilts/ndk/5/platforms/android-3/arch-arm/usr/lib/ |
liblog.so | |
/prebuilts/ndk/6/platforms/android-3/arch-arm/usr/lib/ |
liblog.so | |
/external/qemu/proxy/ |
proxy_http_rewriter.c | 16 #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, ":"); [all...] |
/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
|