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

123

/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dstrsep.c2 * 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/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
H A Dopenbsd-compat.h127 char *strsep(char **stringp, const char *delim);
/external/tcpdump/missing/
H A Dstrsep.c36 "@(#) $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/valgrind/main/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.c250 for ((p = strsep(&sp, SEP)), i=0; p && *p != '\0';
251 (p = strsep(&sp, SEP)), i++) {
259 for ((p = strsep(&cp, SEP)), i=0; p && *p != '\0';
260 (p = strsep(&cp, SEP)), i++) {
H A Ddh.c63 arg = strsep(&cp, " "); /* type */
70 arg = strsep(&cp, " "); /* tests */
78 arg = strsep(&cp, " "); /* tries */
84 strsize = strsep(&cp, " "); /* size */
91 gen = strsep(&cp, " "); /* gen */
94 prime = strsep(&cp, " "); /* prime */
H A Dcompat.c189 for ((p = strsep(&q, SEP)); p && *p != '\0'; (p = strsep(&q, SEP))) {
220 while ((cp = strsep(&tmp, ",")) != NULL) {
H A Dmac.c181 for ((p = strsep(&cp, MAC_SEP)); p && *p != '\0';
182 (p = strsep(&cp, MAC_SEP))) {
H A Daddrmatch.c391 while ((cp = strsep(&list, ",")) != NULL) {
451 while ((cp = strsep(&list, ",")) != NULL) {
H A Dcipher.c165 for ((p = strsep(&cp, CIPHER_SEP)); p && *p != '\0';
166 (p = strsep(&cp, CIPHER_SEP))) {
/external/kernel-headers/original/linux/
H A Dstring.h73 extern char * strsep(char **,const char *);
/external/iptables/extensions/
H A Dlibxt_set.h104 ptr = strsep(&tmp, ",");
130 ptr = strsep(&tmp, ",");
H A Dlibxt_CT.c69 while ((t = strsep(&e, ","))) {
/external/qemu/android/utils/
H A Dsystem.h95 /** Handle strsep() on Win32
98 # undef strsep macro
99 # define strsep win32_strsep macro
/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/tcpdump/
H A Dprint-esp.c140 spikey = strsep(&line, " \t");
189 spistr = strsep(&spikey, "@");
310 if ((line = strsep(&ndo->ndo_espsecret, "\n,")) == NULL) {
/external/elfutils/libdwfl/
H A Ddwfl_build_id_find_elf.c99 while (fd < 0 && (dir = strsep (&path, ":")) != NULL)
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dcompat.cpp113 while((next = strsep(&full, delim)) != NULL) {
/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.c1031 // strsep()
1034 char *strsep(char **stringp, const char *delim);
1037 strsep(&s, NULL); // expected-warning{{Null pointer argument in call to strsep()}}
1041 strsep(NULL, ""); // expected-warning{{Null pointer argument in call to strsep()}}
1046 char *result = strsep(&s, ""); // no-warning
1052 char *result = strsep(&s, ""); // no-warning
1058 strsep(&s, ""); // no-warning
1074 strsep(
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/
H A Dutil.h101 #define yasm__strsep(a, b) strsep(a, b)
H A Dsplint.sh47 libyasm/strsep.c \
/external/qemu/proxy/
H A Dproxy_http_rewriter.c16 #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, ":");

Completed in 700 milliseconds

123