| /NextBSD/contrib/netbsd-tests/lib/libc/string/ |
| HD | t_strpbrk.c | 38 ATF_TC(strpbrk); 39 ATF_TC_HEAD(strpbrk, tc) in ATF_TC_HEAD() argument 44 ATF_TC_BODY(strpbrk, tc) in ATF_TC_BODY() argument 48 ATF_CHECK_EQ(strpbrk(s, ""), NULL); in ATF_TC_BODY() 49 ATF_CHECK_EQ(strpbrk(s, "qrst"), NULL); in ATF_TC_BODY() 50 ATF_CHECK_EQ(strpbrk(s, "a"), s); in ATF_TC_BODY() 51 ATF_CHECK_EQ(strpbrk(s, "b"), s + 1); in ATF_TC_BODY() 52 ATF_CHECK_EQ(strpbrk(s, "ab"), s); in ATF_TC_BODY() 53 ATF_CHECK_EQ(strpbrk(s, "cdef"), s + 2); in ATF_TC_BODY() 54 ATF_CHECK_EQ(strpbrk(s, "fedc"), s + 2); in ATF_TC_BODY() [all …]
|
| /NextBSD/lib/libbluetooth/ |
| HD | bluetooth.c | 118 if ((cp = strpbrk(p, "#\n")) == NULL) in bt_gethostent() 121 if ((cp = strpbrk(p, " \t")) == NULL) in bt_gethostent() 135 if ((cp = strpbrk(cp, " \t")) != NULL) in bt_gethostent() 144 if ((cp = strpbrk(cp, " \t")) != NULL) in bt_gethostent() 222 if ((cp = strpbrk(p, "#\n")) == NULL) in bt_getprotoent() 226 if ((cp = strpbrk(p, " \t")) == NULL) in bt_getprotoent() 231 if ((p = strpbrk(cp, " \t")) != NULL) in bt_getprotoent() 244 if ((cp = strpbrk(cp, " \t")) != NULL) in bt_getprotoent()
|
| /NextBSD/contrib/libstdc++/include/c_std/ |
| D | std_cstring.h | 69 #undef strpbrk 110 using ::strpbrk; 113 strpbrk(char* __s1, const char* __s2) in strpbrk() function
|
| /NextBSD/contrib/libc++/include/ |
| D | cstring | 44 const char* strpbrk(const char* s1, const char* s2); 45 char* strpbrk( char* s1, const char* s2); 88 using ::strpbrk; 99 inline _LIBCPP_INLINE_VISIBILITY char* strpbrk( char* __s1, const char* __s2) {return ::…
|
| /NextBSD/libexec/mknetid/ |
| HD | mknetid.c | 248 if (!(hptr = strpbrk(ptr, "#\n"))) in main() 251 if (!(hptr = strpbrk(ptr, " \t"))) in main() 257 if (!(hptr = strpbrk(ptr, " \t"))) in main() 284 if ((ptr = strpbrk((char*)&readbuf, " \t")) == NULL) { in main()
|
| /NextBSD/lib/libc/net/ |
| HD | getnetbyht.c | 100 cp = strpbrk(p, "#\n"); in getnetent_p() 106 cp = strpbrk(p, " \t"); in getnetent_p() 119 p = strpbrk(cp, " \t"); in getnetent_p() 134 p = strpbrk(cp, " \t"); in getnetent_p()
|
| HD | gethostbyht.c | 110 cp = strpbrk(p, "#\n"); in gethostent_p() 113 if (!(cp = strpbrk(p, " \t"))) in gethostent_p() 143 if ((p = strpbrk(cp, " \t")) != NULL) in gethostent_p() 160 if ((p = strpbrk(cp, " \t")) != NULL) in gethostent_p()
|
| HD | getnetbynis.c | 86 cp = strpbrk(result, " \t"); in _getnetbynis() 106 cp = strpbrk(cp, " \t"); in _getnetbynis() 116 p = strpbrk(cp, " \t"); in _getnetbynis()
|
| HD | gethostbynis.c | 97 cp = strpbrk(result, " \t"); in _gethostbynis() 130 p = strpbrk(cp, " \t"); in _gethostbynis() 148 p = strpbrk(cp, " \t"); in _gethostbynis()
|
| HD | getprotoent.c | 375 cp = strpbrk(p, "#\n"); in __getprotoent_p() 379 cp = strpbrk(p, " \t"); in __getprotoent_p() 385 p = strpbrk(cp, " \t"); in __getprotoent_p() 402 cp = strpbrk(cp, " \t"); in __getprotoent_p()
|
| HD | getservent.c | 178 cp = strpbrk(p, "#\n"); in servent_unpack() 183 p = strpbrk(p, " \t"); in servent_unpack() 189 cp = strpbrk(p, ",/"); in servent_unpack() 201 cp = strpbrk(cp, " \t"); in servent_unpack() 216 cp = strpbrk(cp, " \t"); in servent_unpack()
|
| /NextBSD/sys/cddl/compat/opensolaris/sys/ |
| HD | string.h | 34 char *strpbrk(const char *, const char *);
|
| /NextBSD/lib/libc/string/ |
| HD | strpbrk.c | 42 strpbrk(const char *s1, const char *s2) in strpbrk() function
|
| HD | Makefile.inc | 18 strpbrk.c strrchr.c strsep.c strsignal.c strspn.c strstr.c strtok.c \ 36 string.3 strlcpy.3 strlen.3 strmode.3 strpbrk.3 strsep.3 \
|
| HD | Symbol.map | 44 strpbrk;
|
| /NextBSD/lib/libc/mips/string/ |
| HD | Makefile.inc | 7 strncat.c strncmp.c strncpy.c strrchr.S strpbrk.c strsep.c \
|
| /NextBSD/usr.sbin/ppp/ |
| HD | iplist.c | 66 if ((ptr = strpbrk(range, ",-")) == NULL) { in iplist_setrange() 81 if ((ptr = strpbrk(to, ",-")) == NULL) in iplist_setrange()
|
| /NextBSD/usr.bin/tset/ |
| HD | wrterm.c | 66 if (*p != '\0' && strpbrk(p, " \t") == NULL) { in wrtermcap()
|
| /NextBSD/contrib/libstdc++/include/c_compatibility/ |
| D | string.h | 49 using std::strpbrk;
|
| /NextBSD/sys/cddl/compat/opensolaris/kern/ |
| HD | opensolaris_string.c | 39 strpbrk(const char *s, const char *b) in strpbrk() function
|
| /NextBSD/lib/libc/rpc/ |
| HD | getrpcent.c | 155 cp = strpbrk(p, "#\n"); in rpcent_unpack() 159 cp = strpbrk(p, " \t"); in rpcent_unpack() 169 cp = strpbrk(cp, " \t"); in rpcent_unpack() 184 cp = strpbrk(cp, " \t"); in rpcent_unpack()
|
| /NextBSD/contrib/libreadline/ |
| HD | rldefs.h | 85 # define _rl_strpbrk(a,b) strpbrk((a),(b))
|
| /NextBSD/include/ |
| HD | string.h | 109 char *strpbrk(const char *, const char *) __pure;
|
| /NextBSD/libexec/revnetgroup/ |
| HD | revnetgroup.c | 131 if ((data = (char *)(strpbrk(readbuf, " \t") + 1)) < (char *)2) in main()
|
| /NextBSD/contrib/ofed/libsdp/ |
| HD | configure.in | 37 AC_CHECK_FUNCS([dup2 memset socket strcasecmp strchr strdup strpbrk strrchr strtoul])
|