Searched refs:strpbrk (Results 1 - 25 of 124) sorted by relevance

12345

/freebsd-10.0-release/sys/cddl/compat/opensolaris/sys/
H A Dstring.h34 char *strpbrk(const char *, const char *);
/freebsd-10.0-release/lib/libc/string/
H A Dstrpbrk.c31 static char sccsid[] = "@(#)strpbrk.c 8.1 (Berkeley) 6/4/93";
42 strpbrk(const char *s1, const char *s2) function
H A DSymbol.map44 strpbrk;
H A DMakefile.inc16 strpbrk.c strrchr.c strsep.c strsignal.c strspn.c strstr.c strtok.c \
34 string.3 strlcpy.3 strlen.3 strmode.3 strpbrk.3 strsep.3 \
/freebsd-10.0-release/lib/libc/mips/string/
H A DMakefile.inc7 strncat.c strncmp.c strncpy.c strrchr.S strpbrk.c strsep.c \
/freebsd-10.0-release/contrib/libstdc++/include/c_std/
H A Dstd_cstring.h69 #undef strpbrk macro
110 using ::strpbrk;
113 strpbrk(char* __s1, const char* __s2) function
/freebsd-10.0-release/lib/libbluetooth/
H A Dbluetooth.c118 if ((cp = strpbrk(p, "#\n")) == NULL)
121 if ((cp = strpbrk(p, " \t")) == NULL)
135 if ((cp = strpbrk(cp, " \t")) != NULL)
144 if ((cp = strpbrk(cp, " \t")) != NULL)
222 if ((cp = strpbrk(p, "#\n")) == NULL)
226 if ((cp = strpbrk(p, " \t")) == NULL)
231 if ((p = strpbrk(cp, " \t")) != NULL)
244 if ((cp = strpbrk(cp, " \t")) != NULL)
/freebsd-10.0-release/usr.sbin/pkg_install/lib/
H A Dpkgwrap.c56 cp = strpbrk(cp, SEPARATORS);
71 cp = strpbrk(buffer, SEPARATORS);
/freebsd-10.0-release/contrib/libstdc++/include/c_compatibility/
H A Dstring.h49 using std::strpbrk;
/freebsd-10.0-release/libexec/mknetid/
H A Dmknetid.c248 if (!(hptr = strpbrk(ptr, "#\n")))
251 if (!(hptr = strpbrk(ptr, " \t")))
257 if (!(hptr = strpbrk(ptr, " \t")))
284 if ((ptr = strpbrk((char*)&readbuf, " \t")) == NULL) {
/freebsd-10.0-release/usr.bin/tset/
H A Dwrterm.c66 if (*p != '\0' && strpbrk(p, " \t") == NULL) {
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Basic/
H A DBuiltins.cpp87 const char *Printf = strpbrk(GetRecord(ID).Attributes, "pP");
106 const char *Scanf = strpbrk(GetRecord(ID).Attributes, "sS");
/freebsd-10.0-release/lib/libc/net/
H A Dgetnetbyht.c100 cp = strpbrk(p, "#\n");
106 cp = strpbrk(p, " \t");
119 p = strpbrk(cp, " \t");
134 p = strpbrk(cp, " \t");
H A Dgethostbyht.c110 cp = strpbrk(p, "#\n");
113 if (!(cp = strpbrk(p, " \t")))
143 if ((p = strpbrk(cp, " \t")) != NULL)
160 if ((p = strpbrk(cp, " \t")) != NULL)
H A Dgetnetbynis.c86 cp = strpbrk(result, " \t");
106 cp = strpbrk(cp, " \t");
116 p = strpbrk(cp, " \t");
H A Dgethostbynis.c97 cp = strpbrk(result, " \t");
130 p = strpbrk(cp, " \t");
148 p = strpbrk(cp, " \t");
H A Dgetprotoent.c375 cp = strpbrk(p, "#\n");
379 cp = strpbrk(p, " \t");
385 p = strpbrk(cp, " \t");
402 cp = strpbrk(cp, " \t");
/freebsd-10.0-release/sys/cddl/compat/opensolaris/kern/
H A Dopensolaris_string.c39 strpbrk(const char *s, const char *b) function
/freebsd-10.0-release/contrib/libreadline/
H A Drldefs.h85 # define _rl_strpbrk(a,b) strpbrk((a),(b))
/freebsd-10.0-release/include/
H A Dstring.h109 char *strpbrk(const char *, const char *) __pure;
/freebsd-10.0-release/contrib/nvi/common/
H A Dmultibyte.h78 #define STRPBRK strpbrk
/freebsd-10.0-release/contrib/xz/src/xz/
H A Dsuffix.c41 return strpbrk(str, "/\\:") != NULL;
/freebsd-10.0-release/libexec/revnetgroup/
H A Drevnetgroup.c131 if ((data = (char *)(strpbrk(readbuf, " \t") + 1)) < (char *)2)
/freebsd-10.0-release/usr.bin/find/
H A Dfind.c217 if (isxargs && strpbrk(entry->fts_path, BADCH)) {
/freebsd-10.0-release/usr.sbin/pkg_install/delete/
H A Dmain.c144 strpbrk(pkgs_split, "*?[]") != NULL)) {

Completed in 148 milliseconds

12345