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

  /bionic/libc/string/
strsep.c 1 /* $OpenBSD: strsep.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */
44 * If *stringp is NULL, strsep returns NULL.
47 strsep(char **stringp, const char *delim) function
  /external/openssh/openbsd-compat/
strsep.c 1 /* $OpenBSD: strsep.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */
32 /* OPENBSD ORIGINAL: lib/libc/string/strsep.c */
50 * If *stringp is NULL, strsep returns NULL.
53 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 95 /** Handle strsep() on Win32
98 # undef strsep macro
99 # 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/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
string2.h 1288 # define strsep macro
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
string2.h 1288 # define strsep macro
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
string2.h 1288 # define strsep macro
    [all...]
  /external/chromium/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 990 milliseconds