HomeSort by relevance Sort by last modified time
    Searched defs:strsep (Results 1 - 11 of 11) sorted by null

  /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/fio/lib/
strsep.c 3 char *strsep(char **stringp, const char *delim) function
  /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
  /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/qemu/android/utils/
system.h 100 /** Handle strsep() on Win32
103 # undef strsep macro
104 # define strsep win32_strsep macro
  /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...]
  /external/bison/darwin-lib/
string.h 867 # undef strsep macro
    [all...]
  /external/bison/linux-lib/
string.h 867 # undef strsep macro
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/
string2.h 1287 # define strsep macro
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
string2.h 1287 # define strsep macro
    [all...]
  /external/chromium_org/third_party/libevent/
http.c 223 /* strsep replacement for platforms that lack it. Only works if
226 strsep(char **s, const char *del) function
1218 protocol = strsep(&line, " ");
1221 number = strsep(&line, " ");
1261 method = strsep(&line, " ");
1264 uri = strsep(&line, " ");
1267 version = strsep(&line, " ");
    [all...]

Completed in 2905 milliseconds