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

1 2 3

  /external/fio/lib/
strsep.h 4 char *strsep(char **, const char *);
strsep.c 3 char *strsep(char **stringp, const char *delim) function
  /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/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);
  /development/ndk/platforms/android-3/include/
string.h 80 extern char* strsep(char **, const char *);
  /external/iptables/extensions/
libxt_set.h 111 ptr = strsep(&tmp, ",");
137 ptr = strsep(&tmp, ",");
libxt_CT.c 102 while ((t = strsep(&e, ","))) {
  /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/elfutils/0.153/libdwfl/
dwfl_build_id_find_elf.c 97 while (fd < 0 && (dir = strsep (&path, ":")) != NULL)
find-debuginfo.c 201 while ((p = strsep (&path, ":")) != NULL)
  /external/fio/
configure 872 # strsep() probe
873 strsep="no"
878 strsep(NULL, NULL);
882 if compile_prog "" "" "strsep"; then
883 strsep="yes"
885 echo "strsep $strsep"
1262 if test "$strsep" = "yes" ; then
  /external/bison/darwin-lib/
string.h 867 # undef strsep macro
    [all...]
  /external/bison/linux-lib/
string.h 867 # undef strsep macro
    [all...]
  /external/clang/test/Analysis/
string.c 1033 // strsep()
1036 char *strsep(char **stringp, const char *delim);
1039 strsep(&s, NULL); // expected-warning{{Null pointer argument in call to strsep()}}
1043 strsep(NULL, ""); // expected-warning{{Null pointer argument in call to strsep()}}
1048 char *result = strsep(&s, ""); // no-warning
1054 char *result = strsep(&s, ""); // no-warning
1060 strsep(&s, ""); // no-warning
1076 strsep(&s, "b"); // no-warnin
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/gen/
exec.c 168 while ((p = strsep(&cur, ":"))) {
  /external/chromium_org/third_party/yasm/source/patched-yasm/
util.h 101 #define yasm__strsep(a, b) strsep(a, b)
splint.sh 47 libyasm/strsep.c \
  /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...]
  /external/libselinux/src/
android.c 936 cur = strsep(&next, " \t\n");
942 cur = strsep(&next, " \t\n");
948 cur = strsep(&next, " \t\n");
952 cur = strsep(&next, " \t\n");
958 cur = strsep(&next, " \t\n");
    [all...]
  /bionic/libc/include/
string.h 84 extern char* strsep(char** __restrict, const char* __restrict);
  /development/ndk/platforms/android-L/include/
string.h 83 extern char* strsep(char** __restrict, const char* __restrict);
  /external/fio/crc/
test.c 328 while ((name = strsep(&str, ",")) != NULL) {
  /external/fio/profiles/
act.c 282 dev = strsep(&device_names, ",");
  /external/dnsmasq/src/
network.c 948 while((interface = strsep(&next, ":"))) {
1075 mark_string = strsep(&next, ":");
1078 while ((saddr = strsep(&next, ":"))) {
    [all...]
  /external/dhcpcd/
if-options.c 286 while ((t = strsep(&p, ", "))) {
839 option = strsep(&line, " \t");

Completed in 628 milliseconds

1 2 3