Searched defs:nexttok (Results 1 - 9 of 9) sorted by relevance
/illumos-gate/usr/src/cmd/saf/ |
H A D | util.c | 51 * 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);
|
/illumos-gate/usr/src/cmd/lp/model/netpr/ |
H A D | misc.c | 142 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 D | straddr.c | 184 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 D | versions.c | 72 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/cmd/listen/ |
H A D | lsdbf.c | 524 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/lib/libc/port/gen/ |
H A D | fmtmsg.c | 536 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/nlsadmin/ |
H A D | nlsadmin.c | 92 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/mailx/ |
H A D | optim.c | 933 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/logadm/ |
H A D | conf.c | 52 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 140 milliseconds