Searched refs:strtok (Results 1 - 25 of 157) sorted by relevance

1234567

/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Dtst.strtok_null.d30 * Test that a strtok(NULL, ...) without first calling strtok(string, ...)
36 trace(strtok(NULL, "!"));
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/
135 printf("strtok(\"%s\", \"%s\") = \"%s\", expected \"%s\"",
/freebsd-11-stable/release/picobsd/tinyware/aps/
H A Dmain.c64 name=strtok(buf,sep);
65 pid=strtok(NULL,sep);
66 ppid=strtok(NULL,sep);
67 pgid=strtok(NULL,sep);
68 sid=strtok(NULL,sep);
69 tty=strtok(NULL,sep);
70 tok=strtok(NULL,sep); /* flags */
71 tok=strtok(NULL,sep); /* start */
72 tok=strtok(NULL,sep); /* user time */
73 tok=strtok(NUL
[all...]
/freebsd-11-stable/sys/contrib/ncsw/user/env/
H A Dstdlib.c32 strtok(char *s, const char *ct) function
/freebsd-11-stable/contrib/gdb/gdb/
H A Dgdb_string.h41 #ifndef strtok
42 extern char *strtok (char *, const char *); /* X3.159-1989 4.11.5.8 */
/freebsd-11-stable/contrib/ipfilter/lib/
H A Dassigndefined.c19 for (s = strtok(env, ";"); s != NULL; s = strtok(NULL, ";")) {
H A Doptname.c25 for (s = strtok(**cp, ","); s; s = strtok(NULL, ",")) {
48 for (s = strtok(**cp, ","); s; s = strtok(NULL, ",")) {
H A Dbuildopts.c23 for (s = strtok(cp, ","); s; s = strtok(NULL, ",")) {
H A Dipf_dotuning.c30 for (s = strtok(tuneargs, ","); s != NULL; s = strtok(NULL, ",")) {
H A Dparsefields.c17 for (s = strtok(arg, ","); s != NULL; s = strtok(NULL, ",")) {
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/version/
H A Dtst.1.0.d39 int strtok;
/freebsd-11-stable/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);
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/safety/
H A Dtst.strtok.d41 trace(strtok((char *)rand(), (char *)(rand() ^ vtimestamp)));
47 trace(strtok((char *)arg0, (char *)arg1));
H A Dtst.shortstr.d39 strtok(this->str, ",");
45 strtok(this->str, ",");
50 strtok(this->str, "a");
/freebsd-11-stable/usr.bin/login/
H A Dlogin_fbtab.c52 This module uses strtok(3), which may cause conflicts with other
99 if ((cp = devname = strtok(buf, WSPACE)) == NULL)
102 || (cp = strtok(NULL, WSPACE)) == NULL
107 || (cp = strtok(NULL, WSPACE)) == NULL) {
112 for (cp = strtok(cp, ":"); cp; cp = strtok(NULL, ":")) {
/freebsd-11-stable/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.ksh50 BEGIN { printf("strtok(\"strtok\", \"t\") = %s\n",
51 strtok("strtok", "t")); }
52 BEGIN { printf("strtok(NULL, \"t\") = %s\n",
53 strtok(NULL, "t")); }
54 BEGIN { printf("strtok(NULL, \"t\") = %s\n",
55 strtok(NULL, "t")); }
/freebsd-11-stable/gnu/usr.bin/rcs/lib/
H A Drcskeys.c143 key = strtok(next, ",");
151 key = strtok(NULL, ",");
168 key = strtok(next, "=");
175 while (key = strtok(NULL, ",")) {
/freebsd-11-stable/lib/libc/string/
H A Dstrtok.c4 * strtok_r, from Berkeley strtok
36 static char sccsid[] = "@(#)strtok.c 8.1 (Berkeley) 6/4/93";
98 strtok(char *s, const char *delim) function
120 for (word = strtok(test, sep); word; word = strtok(NULL, sep))
/freebsd-11-stable/contrib/tcp_wrappers/
H A Dinetcf.c106 service = strtok(buf, whitespace); /* service */
110 strtok((char *) 0, whitespace); /* endpoint */
111 protocol = strtok((char *) 0, whitespace);
112 (void) strtok((char *) 0, whitespace); /* wait */
113 if ((user = strtok((char *) 0, whitespace)) == 0)
118 if ((path = strtok((char *) 0, whitespace)) == 0)
131 if ((path = strtok((char *) 0, whitespace)) == 0)
134 if ((arg0 = strtok((char *) 0, whitespace)) == 0) {
145 if ((arg0 = strtok((char *) 0, whitespace)) == 0) {
150 if ((arg1 = strtok((cha
[all...]
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/stdlib/
H A Dh_getopt.c63 optstring = strtok(&line[6], WS);
75 args[nargs = 0] = strtok(&line[6], WS);
81 while ((args[++nargs] = strtok(NULL, WS)) != NULL)
94 result = strtok(&line[8], WS);
/freebsd-11-stable/contrib/groff/src/libs/libgroff/
H A Dfont.cpp587 p = strtok(t.buf, WS);
591 p = strtok(0, WS);
600 p = strtok(0, WS);
610 p = strtok(0, WS);
630 p = strtok(0, WS);
643 p = strtok(0, "\n");
661 char *c1 = strtok(t.buf, WS);
664 char *c2 = strtok(0, WS);
669 p = strtok(0, WS);
700 char *nm = strtok(
[all...]
/freebsd-11-stable/lib/libpam/modules/pam_login_access/
H A Dlogin_access.c88 if (!(perm = strtok(line, fieldsep))
89 || !(users = strtok((char *) 0, fieldsep))
90 || !(froms = strtok((char *) 0, fieldsep))
91 || strtok((char *) 0, fieldsep)) {
129 for (tok = strtok(list, listsep); tok != NULL; tok = strtok((char *) 0, listsep)) {
138 while ((tok = strtok((char *) 0, listsep)) && strcmp(tok, "EXCEPT")) {
/freebsd-11-stable/contrib/opie/libopie/
H A Daccessfile.c101 if (!(cp = strtok(buf, " \t")))
113 if (!(cp = strtok(NULL, " \t")))
116 if (!(cp = strtok(NULL, " \t")))
/freebsd-11-stable/usr.bin/chpass/
H A Dutil.c99 if (!(t = strtok(p, " \t")))
113 if (!(t = strtok(NULL, " \t,")) || !isdigit(*t))
116 if (!(t = strtok(NULL, " \t,")) || !isdigit(*t))

Completed in 2116 milliseconds

1234567