/src/lib/libc/string/ |
strtok.c | 47 static char *lasts; local in function:strtok 49 return strtok_r(s, delim, &lasts);
|
/src/lib/libc/rpc/ |
getnetconfig.c | 529 char *lasts; local in function:parse_ncp 538 if ((ncp->nc_netid = strtok_r(stringp, "\t ", &lasts)) == NULL) 542 if ((tokenp = strtok_r(NULL, "\t ", &lasts)) == NULL) 556 if ((tokenp = strtok_r(NULL, "\t ", &lasts)) == NULL) 573 if ((ncp->nc_protofmly = strtok_r(NULL, "\t ", &lasts)) == NULL) 576 if ((ncp->nc_proto = strtok_r(NULL, "\t ", &lasts)) == NULL) 579 if ((ncp->nc_device = strtok_r(NULL, "\t ", &lasts)) == NULL) 581 if ((tokenp = strtok_r(NULL, "\t ", &lasts)) == NULL)
|
/src/usr.sbin/ifwatchd/ |
ifwatchd.c | 439 char * name, *lasts; local in function:list_interfaces 443 for (name = strtok_r(names, sep, &lasts); 445 name = strtok_r(NULL, sep, &lasts)) {
|
/src/lib/libc/time/ |
zic.c | 413 static struct lookup const lasts[] = { variable in typeref:struct:lookup const[] 2277 if ((lp = byword(dp, lasts)) != NULL) { 3731 /* If TABLE is LASTS and the word starts with "last" followed 3734 if (table == lasts && ciprefix("last", word) && word[4]) {
|