Searched refs:strsep (Results 1 - 25 of 76) sorted by relevance

1234

/external/fio/lib/
H A Dstrsep.h4 char *strsep(char **, const char *);
H A Dstrsep.c3 char *strsep(char **stringp, const char *delim) function
/external/syslinux/com32/lib/
H A Dstrtok.c14 return strsep(&holder, delim);
H A Dstrsep.c2 * strsep.c
7 char *strsep(char **stringp, const char *delim) function
/external/openssh/openbsd-compat/
H A Dstrsep.c1 /* $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/
H A Dstrsep.c53 * If *stringp is NULL, strsep returns NULL.
56 strsep(char **stringp, const char *delim) function
/external/valgrind/memcheck/tests/
H A Dstr_tester.c841 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(
[all...]
/external/openssh/
H A Dmatch.c249 for ((p = strsep(&sp, SEP)), i=0; p && *p != '\0';
250 (p = strsep(&sp, SEP)), i++) {
258 for ((p = strsep(&cp, SEP)), i=0; p && *p != '\0';
259 (p = strsep(&cp, SEP)), i++) {
H A Ddh.c66 arg = strsep(&cp, " "); /* type */
75 arg = strsep(&cp, " "); /* tests */
85 arg = strsep(&cp, " "); /* tries */
93 strsize = strsep(&cp, " "); /* size */
102 gen = strsep(&cp, " "); /* gen */
105 prime = strsep(&cp, " "); /* prime */
H A Dcompat.c232 for ((p = strsep(&q, SEP)); p && *p != '\0'; (p = strsep(&q, SEP))) {
266 while ((cp = strsep(&tmp, ",")) != NULL) {
H A Dmac.c242 for ((p = strsep(&cp, MAC_SEP)); p && *p != '\0';
243 (p = strsep(&cp, MAC_SEP))) {
/external/tcpdump/
H A Dprint-esp.c354 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) {
/external/ltp/testcases/kernel/containers/share/
H A Dns_create.c90 while ((token = strsep(&argv[1], ","))) {
H A Dns_exec.c113 while ((token = strsep(&argv[2], ","))) {
/external/syslinux/com32/include/
H A Dstring.h41 __extern char *strsep(char **, const char *);
/external/toybox/toys/pending/
H A Dklogd.c93 if ((line_start = strsep(&start, "\n")) != NULL && start != NULL) used = 0;
/external/syslinux/gpxe/src/include/
H A Dstring.h38 char * strsep(char **s, const char *ct) __nonnull;
/external/toybox/toys/posix/
H A Dcut.c74 char *ctoken = strsep(&list, ","), *dtoken;
81 if (*(dtoken = strsep(&ctoken, "-"))) {
163 field = strsep(&buff, delimiter);
/external/bison/lib/
H A Dstring.in.h541 _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 fo
[all...]
/external/syslinux/gpxe/src/core/
H A Dstringextra.c20 * - Added strsep() which will replace strtok() soon (because strsep() is
21 * reentrant and should be faster). Use only strsep() in new code, please.
181 * WARNING: strtok is deprecated, use strsep instead.
206 * strsep - Split a string into tokens
210 * strsep() updates @s to point after the token, ready for the next call.
216 char * strsep(char **s, const char *ct) function
/external/iptables/extensions/
H A Dlibxt_set.h155 ptr = strsep(&tmp, ",");
181 ptr = strsep(&tmp, ",");
/external/bison/darwin-lib/
H A Dstring.h853 _GL_FUNCDECL_SYS (strsep, char *,
857 _GL_CXXALIAS_SYS (strsep, char *,
859 _GL_CXXALIASWARN (strsep);
861 # undef strsep
862 _GL_WARN_ON_USE (strsep, "strsep cannot work correctly on character strings "
867 # undef strsep macro
869 _GL_WARN_ON_USE (strsep, "strsep is unportable - "
870 "use gnulib module strsep fo
[all...]
/external/bison/linux-lib/
H A Dstring.h853 _GL_FUNCDECL_SYS (strsep, char *,
857 _GL_CXXALIAS_SYS (strsep, char *,
859 _GL_CXXALIASWARN (strsep);
861 # undef strsep
862 _GL_WARN_ON_USE (strsep, "strsep cannot work correctly on character strings "
867 # undef strsep macro
869 _GL_WARN_ON_USE (strsep, "strsep is unportable - "
870 "use gnulib module strsep fo
[all...]
/external/clang/test/Analysis/
H A Dstring.c1095 // strsep()
1098 char *strsep(char **stringp, const char *delim);
1101 strsep(&s, NULL); // expected-warning{{Null pointer argument in call to strsep()}}
1105 strsep(NULL, ""); // expected-warning{{Null pointer argument in call to strsep()}}
1110 char *result = strsep(&s, ""); // no-warning
1116 char *result = strsep(&s, ""); // no-warning
1122 strsep(&s, ""); // no-warning
1138 strsep(
[all...]
/external/elfutils/libdwfl/
H A Ddwfl_build_id_find_elf.c77 while (fd < 0 && (dir = strsep (&paths, ":")) != NULL)

Completed in 539 milliseconds

1234