Home
last modified time | relevance | path

Searched refs:strtok (Results 1 – 25 of 148) sorted by relevance

123456

/freebsd/contrib/tcp_wrappers/
H A Dinetcf.c105 service = strtok(buf, whitespace); /* service */ in inet_cfg()
109 strtok((char *) 0, whitespace); /* endpoint */ in inet_cfg()
110 protocol = strtok((char *) 0, whitespace); in inet_cfg()
111 (void) strtok((char *) 0, whitespace); /* wait */ in inet_cfg()
112 if ((user = strtok((char *) 0, whitespace)) == 0) in inet_cfg()
117 if ((path = strtok((char *) 0, whitespace)) == 0) in inet_cfg()
130 if ((path = strtok((char *) 0, whitespace)) == 0) in inet_cfg()
133 if ((arg0 = strtok((char *) 0, whitespace)) == 0) { in inet_cfg()
144 if ((arg0 = strtok((char *) 0, whitespace)) == 0) { in inet_cfg()
149 if ((arg1 = strtok((char *) 0, whitespace)) == 0) in inet_cfg()
H A Dtcpdchk.c276 for (cp = strtok(buf, sep); cp != 0; cp = next) { in print_list()
278 next = strtok((char *) 0, sep); in print_list()
296 for (cp = strtok(buf, sep); cp != 0; cp = strtok((char *) 0, sep)) { in check_daemon_list()
323 for (cp = strtok(buf, sep); cp != 0; cp = strtok((char *) 0, sep)) { in check_client_list()
456 for (cp = strtok(buf, wsp); cp; cp = strtok((char *) 0, wsp)) in check_host()
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Dtst.strtok.d37 /(this->field = strtok(this->str, ",")) == NULL/
48 /(this->field = strtok(NULL, ",")) == NULL/
59 /(this->field = strtok(NULL, ",")) == NULL/
70 /(this->field = strtok(NULL, ",")) == NULL/
81 /(self->a = strtok(NULL, ",")) != NULL/
133 (this->result = strtok(command[i].s1, command[i].s2)) != command[i].result/
/freebsd/usr.bin/login/
H A Dlogin_fbtab.c96 if ((cp = devname = strtok(buf, WSPACE)) == NULL) in login_fbtab()
99 || (cp = strtok(NULL, WSPACE)) == NULL in login_fbtab()
104 || (cp = strtok(NULL, WSPACE)) == NULL) { in login_fbtab()
109 for (cp = strtok(cp, ":"); cp; cp = strtok(NULL, ":")) { in login_fbtab()
/freebsd/sbin/ipf/libipf/
H A Doptname.c22 for (s = strtok(**cp, ","); s; s = strtok(NULL, ",")) { in optname()
45 for (s = strtok(**cp, ","); s; s = strtok(NULL, ",")) { in optname()
H A Dassigndefined.c19 for (s = strtok(env, ";"); s != NULL; s = strtok(NULL, ";")) { in assigndefined()
H A Dbuildopts.c21 for (s = strtok(cp, ","); s; s = strtok(NULL, ",")) { in buildopts()
H A Dparsefields.c15 for (s = strtok(arg, ","); s != NULL; s = strtok(NULL, ",")) { in parsefields()
H A Dipf_dotuning.c26 for (s = strtok(tuneargs, ","); s != NULL; s = strtok(NULL, ",")) { in ipf_dotuning()
/freebsd/lib/libpam/modules/pam_login_access/
H A Dlogin_access.c85 if (!(perm = strtok(line, fieldsep)) in login_access()
86 || !(users = strtok((char *) 0, fieldsep)) in login_access()
87 || !(froms = strtok((char *) 0, fieldsep)) in login_access()
88 || strtok((char *) 0, fieldsep)) { in login_access()
126 for (tok = strtok(list, listsep); tok != NULL; tok = strtok((char *) 0, listsep)) { in list_match()
135 while ((tok = strtok((char *) 0, listsep)) && strcmp(tok, "EXCEPT")) { in list_match()
/freebsd/share/examples/ipfilter/l4check/
H A Dl4check.c531 t = strtok(line, " \t"); in readconfig()
535 s = strtok(NULL, " \t"); in readconfig()
537 t = strtok(NULL, "\t"); in readconfig()
575 s = strtok(NULL, " \t"); in readconfig()
577 t = strtok(NULL, ""); in readconfig()
608 s = strtok(NULL, " \t"); in readconfig()
610 t = strtok(NULL, "\t"); in readconfig()
632 s = strtok(NULL, " \t"); in readconfig()
645 t = strtok(NULL, ""); in readconfig()
660 t = strtok(NULL, " \t"); in readconfig()
[all …]
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/
H A Dtst.func_access.ksh54 BEGIN { trace(strtok(`initname, "/")); }
55 BEGIN { trace(strtok(NULL, "/")); }
56 BEGIN { trace(strtok("foo/bar", `initname)); }
57 BEGIN { trace(strtok(NULL, `initname)); }
H A Dtst.unpriv_funcs.ksh51 strtok("strtok", "t")); }
53 strtok(NULL, "t")); }
55 strtok(NULL, "t")); }
H A Dtst.kpriv.ksh62 CANTREAD2(strtok, "doogle")
63 CANTREAD2ARG1(strtok, "doogle")
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/safety/
H A Dtst.shortstr.d39 strtok(this->str, ",");
45 strtok(this->str, ",");
50 strtok(this->str, "a");
H A Dtst.strtok.d41 trace(strtok((char *)rand(), (char *)(rand() ^ vtimestamp)));
47 trace(strtok((char *)arg0, (char *)arg1));
/freebsd/contrib/netbsd-tests/lib/libc/stdlib/
H A Dh_getopt.c63 optstring = strtok(&line[6], WS); in main()
75 args[nargs = 0] = strtok(&line[6], WS); in main()
81 while ((args[++nargs] = strtok(NULL, WS)) != NULL) in main()
94 result = strtok(&line[8], WS); in main()
H A Dh_getopt_long.c69 optstring = strtok(&line[11], WS); in main()
85 ptr = strtok(&line[10], WS); in main()
160 args[nargs = 0] = strtok(&line[6], WS); in main()
165 while ((args[++nargs] = strtok(NULL, WS)) != NULL) in main()
173 result = strtok(&line[8], WS); in main()
/freebsd/lib/libc/string/
H A Dstrtok.c94 strtok(char *s, const char *delim) in strtok() function
116 for (word = strtok(test, sep); word; word = strtok(NULL, sep)) in main()
/freebsd/sys/contrib/ncsw/inc/
H A Dstring_ext.h40 extern char * strtok ( char * str, const char * delimiters );
51 extern char *strtok(char *str, const char *delimiters);
H A Ddebug_ext.h65 p_DumpToken = strtok(dumpTmpStr, (dumpIsArr[0] ? "[" : ".")); \
72 p_DumpToken = strtok(NULL, "."); \
75 ((p_DumpToken = strtok(NULL, (dumpIsArr[++dumpTmpLevel] ? "[" : "."))) != NULL)) \
/freebsd/usr.bin/chpass/
H A Dutil.c94 if (!(t = strtok(p, " \t"))) in atot()
108 if (!(t = strtok(NULL, " \t,")) || !isdigit(*t)) in atot()
111 if (!(t = strtok(NULL, " \t,")) || !isdigit(*t)) in atot()
/freebsd/sbin/natd/
H A Dnatd.c1633 protoName = strtok (buf, " \t"); in SetupPortRedirect()
1641 ptr = strtok (NULL, " \t"); in SetupPortRedirect()
1663 ptr = strtok (NULL, " \t"); in SetupPortRedirect()
1684 ptr = strtok (NULL, " \t"); in SetupPortRedirect()
1734 ptr = strtok(serverPool, ","); in SetupPortRedirect()
1743 ptr = strtok(NULL, ","); in SetupPortRedirect()
1768 protoName = strtok(buf, " \t"); in SetupProtoRedirect()
1780 ptr = strtok(NULL, " \t"); in SetupProtoRedirect()
1788 ptr = strtok(NULL, " \t"); in SetupProtoRedirect()
1796 ptr = strtok(NULL, " \t"); in SetupProtoRedirect()
[all …]
/freebsd/contrib/netbsd-tests/lib/libc/regex/
H A Dt_regex_att.c406 if ((name = strtok(line, sep)) == NULL) in att_test()
430 ATF_REQUIRE_MSG((pattern = strtok(NULL, sep)) != NULL, in att_test()
432 ATF_REQUIRE_MSG((input = strtok(NULL, sep)) != NULL, in att_test()
452 ATF_REQUIRE_MSG((matches = strtok(NULL, sep)) != NULL, in att_test()
455 comment = strtok(NULL, sep); in att_test()
/freebsd/usr.sbin/jail/
H A Dcommand.c392 for (cs = strtok(extrap, " "); cs; in run_command()
393 cs = strtok(NULL, " ")) { in run_command()
441 for (cs = strtok(extrap, " "); cs; in run_command()
442 cs = strtok(NULL, " ")) { in run_command()
470 for (cs = strtok(comcs, " \t\f\v\r\n"); cs && argc < 4; in run_command()
471 cs = strtok(NULL, " \t\f\v\r\n")) { in run_command()
649 for (cs = strtok(comcs, " \t\f\v\r\n"); cs; in run_command()
650 cs = strtok(NULL, " \t\f\v\r\n")) in run_command()
655 for (cs = strtok(comcs, " \t\f\v\r\n"); cs; in run_command()
656 cs = strtok(NULL, " \t\f\v\r\n")) in run_command()

123456