Searched refs:strtok (Results 26 - 50 of 157) sorted by relevance

1234567

/freebsd-11-stable/contrib/libstdc++/include/c_compatibility/
H A Dstring.h53 using std::strtok;
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/
H A Dtst.kpriv.ksh62 CANTREAD2(strtok, "doogle")
63 CANTREAD2ARG1(strtok, "doogle")
/freebsd-11-stable/sys/contrib/ncsw/inc/
H A Dstdlib_ext.h95 * strtok - Split a string into tokens
99 * WARNING: strtok is deprecated, use strsep instead.
101 char * strtok(char * s,const char * ct);
H A Ddebug_ext.h63 p_DumpToken = strtok(dumpTmpStr, (dumpIsArr[0] ? "[" : ".")); \
70 p_DumpToken = strtok(NULL, "."); \
72 if ((p_DumpToken = strtok(NULL, (dumpIsArr[++dumpTmpLevel] ? "[" : "."))) != 0) \
/freebsd-11-stable/contrib/libstdc++/include/c_std/
H A Dstd_cstring.h73 #undef strtok macro
93 using ::strtok;
/freebsd-11-stable/usr.bin/xlint/lint1/
H A Dmain1.c157 for (ptr = strtok(optarg, ","); ptr;
158 ptr = strtok(NULL, ",")) {
/freebsd-11-stable/contrib/tcp_wrappers/
H A Dtcpdchk.c282 for (cp = strtok(buf, sep); cp != 0; cp = next) {
284 next = strtok((char *) 0, sep);
303 for (cp = strtok(buf, sep); cp != 0; cp = strtok((char *) 0, sep)) {
331 for (cp = strtok(buf, sep); cp != 0; cp = strtok((char *) 0, sep)) {
468 for (cp = strtok(buf, wsp); cp; cp = strtok((char *) 0, wsp))
H A Dtcpd.h216 #ifdef USE_STRSEP /* libc calls strtok() */
217 #define strtok fix_strtok macro
221 #ifdef LIBC_CALLS_STRTOK /* libc calls strtok() */
222 #define strtok my_strtok macro
/freebsd-11-stable/contrib/ipfilter/l4check/
H A Dl4check.c537 t = strtok(line, " \t");
541 s = strtok(NULL, " \t");
543 t = strtok(NULL, "\t");
581 s = strtok(NULL, " \t");
583 t = strtok(NULL, "");
614 s = strtok(NULL, " \t");
616 t = strtok(NULL, "\t");
638 s = strtok(NULL, " \t");
651 t = strtok(NULL, "");
666 t = strtok(NUL
[all...]
/freebsd-11-stable/contrib/groff/src/devices/xditview/
H A Ddevice.c117 p = strtok(buf, WS);
138 q = strtok((char *)0, WS);
205 p = strtok(buf, WS);
207 if (p && strcmp(p, "charset") == 0 && strtok((char *)0, WS) == 0)
411 name = strtok(buf, WS);
414 p = strtok((char *)0, WS);
432 p = strtok((char *)0, WS);
437 p = strtok((char *)0, WS);
/freebsd-11-stable/libexec/getty/
H A Dchat.c148 for (l = 0, p = strtok(strcpy(tmp, str), ws);
150 p = strtok(NULL, ws))
/freebsd-11-stable/usr.sbin/fmtree/
H A Dspec.c104 if ((p = strtok(p, "\n\t ")) == NULL)
176 for (; (kw = strtok(t, "= \t\n")); t = NULL) {
178 if (value && (val = strtok(NULL, " \t\n")) == NULL)
321 while ((p = strtok(t, "\n\t ")))
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/regex/
H A Dt_regex_att.c406 if ((name = strtok(line, sep)) == NULL)
430 ATF_REQUIRE_MSG((pattern = strtok(NULL, sep)) != NULL,
432 ATF_REQUIRE_MSG((input = strtok(NULL, sep)) != NULL,
452 ATF_REQUIRE_MSG((matches = strtok(NULL, sep)) != NULL,
455 comment = strtok(NULL, sep);
/freebsd-11-stable/lib/libc/string/
H A DMakefile.inc18 strpbrk.c strrchr.c strsep.c strsignal.c strspn.c strstr.c strtok.c \
40 strspn.3 strstr.3 strtok.3 strxfrm.3 swab.3 \
76 MLINKS+=strtok.3 strtok_r.3
/freebsd-11-stable/contrib/netbsd-tests/lib/libpthread/
H A Dh_resolv.c85 for (ptr = strtok(line, WS); ptr; ptr = strtok(NULL, WS))
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/
H A Dtst.subr.d88 STRFUNC(strtok("The SystemTap, The.", "T"))
/freebsd-11-stable/contrib/groff/src/libs/libgroff/
H A Drelocate.cpp132 char *tmpathext = strsave(pathext); // strtok modifies this string,
134 char *ext = strtok(tmpathext, PATH_SEP);
143 ext = strtok(0, PATH_SEP);
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-sysinfo.c209 const char *field = strtok(buffer, " ");
210 const char *valueS = strtok(NULL, " ");
/freebsd-11-stable/contrib/amd/amd/
H A Dops_lustre.c99 for (ptr = strtok(rhost, ":"); ptr; ptr = strtok(NULL, ":")) {
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/stdlib/
H A Dh_getopt_long.c69 optstring = strtok(&line[11], WS);
85 ptr = strtok(&line[10], WS);
160 args[nargs = 0] = strtok(&line[6], WS);
165 while ((args[++nargs] = strtok(NULL, WS)) != NULL)
173 result = strtok(&line[8], WS);
/freebsd-11-stable/usr.bin/tabs/
H A Dtabs.c205 for (last = *nstops = 0, tok = strtok(arg, ","); tok != NULL;
206 tok = strtok(NULL, ",")) {
/freebsd-11-stable/contrib/ipfilter/ipsend/
H A Dipsopt.c155 for (s = strtok(cp, ","); s; s = strtok(NULL, ",")) {
H A Dipsend.c97 t = strtok(s, ",");
98 t = strtok(NULL, ",");
104 if ((t = strtok(NULL, ",")))
111 if ((t = strtok(NULL, ",")))
/freebsd-11-stable/cddl/usr.sbin/dtrace/tests/common/safety/
H A DMakefile39 tst.strtok.d \
/freebsd-11-stable/usr.sbin/cron/cron/
H A Dexterns.h58 extern char *getenv(), *strcpy(), *strchr(), *strtok();

Completed in 315 milliseconds

1234567