Searched refs:nexttok (Results 1 - 11 of 11) sorted by relevance

/illumos-gate/usr/src/cmd/listen/
H A Dlsdbf.c524 register char *nexttok; local
537 nexttok = ++p;
539 if (!(p = strchr(nexttok, DBFTOKSEP ))) {
545 while (*nexttok) {
546 switch (*nexttok) {
555 DEBUG((1,"scan_line: unknown flag char: 0x%x",*nexttok));
559 ++nexttok;
561 nexttok = ++p;
563 if (!(p = strchr(nexttok, DBFTOKSEP ))) {
568 *id_p = nexttok;
[all...]
/illumos-gate/usr/src/cmd/saf/
H A Dutil.c51 * nexttok - return next token, essentially a strtok, but it can
63 nexttok(str, delim, ros) function
113 p = nexttok(p, DELIM, FALSE);
137 p = nexttok(NULL, DELIM, FALSE);
161 p = nexttok(NULL, DELIM, FALSE);
195 p = nexttok(NULL, DELIM, FALSE);
210 p = nexttok(NULL, DELIM, FALSE);
H A Dextern.h72 extern char *nexttok();
H A Dpmadm.c1099 p = nexttok(p, DELIM, FALSE);
1115 p = nexttok(NULL, DELIM, FALSE);
1142 p = nexttok(NULL, DELIM, FALSE);
1154 p = nexttok(NULL, DELIM, FALSE);
1166 p = nexttok(NULL, DELIM, FALSE);
1178 p = nexttok(NULL, DELIM, FALSE);
1190 p = nexttok(NULL, DELIM, TRUE);
/illumos-gate/usr/src/cmd/lp/model/netpr/
H A Dmisc.c142 char * nexttok; local
148 tmp = (char *)strtok_r(dest, sep, &nexttok);
151 tmp = (char *)strtok_r(NULL, sep, &nexttok);
/illumos-gate/usr/src/lib/nametoaddr/straddr/common/
H A Dstraddr.c184 char *nexttok; /* next token to process */ local
191 hostname = strtok_r(fulladdr, ".", &nexttok);
196 servname = strtok_r(NULL, " \n\t", &nexttok);
254 hostname = strtok_r(hostbuf, ",", &nexttok);
263 hostname = strtok_r(NULL, ",", &nexttok);
416 char *nexttok; /* next token to process */ local
467 fileaddr = strtok_r(buf, " \t\n", &nexttok);
471 if ((filehost = strtok_r(NULL, " \t\n", &nexttok)) == NULL)
523 char *nexttok; /* next token to process */ local
541 fileservice = strtok_r(buf, " \t\n", &nexttok);
[all...]
/illumos-gate/usr/src/cmd/abi/spectrans/spec2map/
H A Dversions.c72 static char *nexttok(void);
182 token = nexttok();
219 (void) nexttok();
229 (void) nexttok();
301 token = nexttok();
427 token = nexttok();
430 token = nexttok();
480 (void) nexttok();
500 token = nexttok();
539 * currtok/nexttok
552 nexttok(void) function
[all...]
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dfmtmsg.c536 char *nexttok; /* Pointer to next token */ local
550 nexttok = strcpy(alloced, opts);
553 while ((tok = nexttok) != (char *)NULL) {
563 nexttok = tokend + (ptrdiff_t)1;
566 nexttok = (char *)NULL;
592 nexttok = (char *)NULL;
/illumos-gate/usr/src/cmd/mailx/
H A Doptim.c933 static int nexttok; /* Salted away next token */ variable
947 nexttok = 0;
964 if (nexttok) {
965 s = nexttok;
966 nexttok = 0;
982 nexttok = *cp;
/illumos-gate/usr/src/cmd/nlsadmin/
H A Dnlsadmin.c92 char *nexttok();
681 if ((name = nexttok(buf, ":")) == NULL)
683 if ((type = nexttok(NULL, ":")) == NULL)
690 if (nexttok(NULL, ":") == NULL)
692 if (nexttok(NULL, ":") == NULL)
694 if ((state = nexttok(NULL, ":")) == NULL)
1315 * nexttok - return next token, essentially a strtok, but it can
1325 nexttok(char *str, char *delim) function
/illumos-gate/usr/src/cmd/logadm/
H A Dconf.c52 static char *nexttok(char **ptrptr);
135 nexttok(char **ptrptr) function
237 entry = nexttok(&line);
253 if ((entry = nexttok(&line)) != NULL &&
263 while (ap = nexttok(&line))

Completed in 59 milliseconds