Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/listen/
H A Dlsdbf.c535 nexttok = ++p;
557 ++nexttok;
559 nexttok = ++p;
567 nexttok = ++p;
575 nexttok = ++p;
583 nexttok = ++p;
591 nexttok = ++p;
599 nexttok = ++p;
653 nexttok = ++p;
691 ++nexttok;
[all …]
/illumos-gate/usr/src/lib/nametoaddr/straddr/common/
H A Dstraddr.c184 char *nexttok; /* next token to process */ in _netdir_getbyaddr() local
191 hostname = strtok_r(fulladdr, ".", &nexttok); in _netdir_getbyaddr()
196 servname = strtok_r(NULL, " \n\t", &nexttok); in _netdir_getbyaddr()
254 hostname = strtok_r(hostbuf, ",", &nexttok); in _netdir_getbyaddr()
263 hostname = strtok_r(NULL, ",", &nexttok); in _netdir_getbyaddr()
416 char *nexttok; /* next token to process */ in searchhost() local
467 fileaddr = strtok_r(buf, " \t\n", &nexttok); in searchhost()
471 if ((filehost = strtok_r(NULL, " \t\n", &nexttok)) == NULL) in searchhost()
523 char *nexttok; /* next token to process */ in searchserv() local
541 fileservice = strtok_r(buf, " \t\n", &nexttok); in searchserv()
[all …]
/illumos-gate/usr/src/cmd/abi/spectrans/spec2map/
H A Dversions.c71 static char *nexttok(void);
181 token = nexttok(); in comment()
218 (void) nexttok(); in arch_name()
228 (void) nexttok(); in arch_name()
300 token = nexttok(); in set()
426 token = nexttok(); in set_parents()
429 token = nexttok(); in set_parents()
479 (void) nexttok(); in accept_token()
499 token = nexttok(); in skip_to()
545 (void) nexttok(); in currtok()
[all …]
/illumos-gate/usr/src/cmd/saf/
H A Dutil.c60 nexttok(str, delim, ros) in nexttok() function
110 p = nexttok(p, DELIM, FALSE);
134 p = nexttok(NULL, DELIM, FALSE);
158 p = nexttok(NULL, DELIM, FALSE);
192 p = nexttok(NULL, DELIM, FALSE);
207 p = nexttok(NULL, DELIM, FALSE);
H A Dpmadm.c1094 p = nexttok(p, DELIM, FALSE);
1110 p = nexttok(NULL, DELIM, FALSE);
1137 p = nexttok(NULL, DELIM, FALSE);
1149 p = nexttok(NULL, DELIM, FALSE);
1161 p = nexttok(NULL, DELIM, FALSE);
1173 p = nexttok(NULL, DELIM, FALSE);
1185 p = nexttok(NULL, DELIM, TRUE);
H A Dextern.h72 extern char *nexttok();
/illumos-gate/usr/src/cmd/lp/model/netpr/
H A Dmisc.c140 char * nexttok; in parse_dest() local
146 tmp = (char *)strtok_r(dest, sep, &nexttok); in parse_dest()
149 tmp = (char *)strtok_r(NULL, sep, &nexttok); in parse_dest()
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dfmtmsg.c534 char *nexttok; /* Pointer to next token */ in msgverbset() local
548 nexttok = strcpy(alloced, opts); in msgverbset()
551 while ((tok = nexttok) != (char *)NULL) { in msgverbset()
561 nexttok = tokend + (ptrdiff_t)1; in msgverbset()
564 nexttok = (char *)NULL; in msgverbset()
590 nexttok = (char *)NULL; in msgverbset()
/illumos-gate/usr/src/cmd/mailx/
H A Doptim.c930 static int nexttok; /* Salted away next token */ variable
944 nexttok = 0; in yyinit()
961 if (nexttok) { in yylex()
962 s = nexttok; in yylex()
963 nexttok = 0; in yylex()
979 nexttok = *cp; in yylex()
/illumos-gate/usr/src/cmd/logadm/
H A Dconf.c53 static char *nexttok(char **ptrptr);
137 nexttok(char **ptrptr) in nexttok() function
240 entry = nexttok(&line); in conf_scan()
256 if ((entry = nexttok(&line)) != NULL && in conf_scan()
266 while (ap = nexttok(&line)) in conf_scan()
/illumos-gate/usr/src/cmd/nlsadmin/
H A Dnlsadmin.c89 char *nexttok();
678 if ((name = nexttok(buf, ":")) == NULL) in prt_nets()
680 if ((type = nexttok(NULL, ":")) == NULL) in prt_nets()
687 if (nexttok(NULL, ":") == NULL) in prt_nets()
689 if (nexttok(NULL, ":") == NULL) in prt_nets()
691 if ((state = nexttok(NULL, ":")) == NULL) in prt_nets()
1322 nexttok(char *str, char *delim) in nexttok() function