/src/lib/libc/string/ |
strtok.c | 47 static char *lasts; local in function:strtok 49 return strtok_r(s, delim, &lasts);
|
strtok_r.c | 51 strtok_r(char *s, const char *delim, char **lasts) 59 _DIAGASSERT(lasts != NULL); 61 if (s == NULL && (s = *lasts) == NULL) 75 *lasts = NULL; 93 *lasts = s;
|
/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/usr.bin/make/unit-tests/ |
varmod-sysv.mk | 45 # When the modifier ':from=to' is parsed, it lasts until the closing brace 220 # lasts longer than expected. The whole expression initially has the value
|
varmod-indirect.mk | 198 # interpretation only lasts until the end of the indirect modifier, it does 210 # interpretation only lasts until the end of the indirect modifier, it does
|
/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]) {
|