Searched defs:next_token (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/lib/libdevinfo/
H A Ddevinfo_realpath.c88 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; local
122 if (s - left >= sizeof (next_token)) {
126 (void) memcpy(next_token, left, s - left);
127 next_token[s - left] = '\0';
139 if (next_token[0] == '\0')
141 else if (strcmp(next_token, ".") == 0)
143 else if (strcmp(next_token, "..") == 0) {
162 resolved_len = strlcat(resolved, next_token, PATH_MAX);
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Ddsparse.c45 static char *next_token( char ** sp );
66 while (( token = next_token( &p )) != NULL ) {
152 next_token( char **sp ) function
/illumos-gate/usr/src/lib/libcryptoutil/common/
H A Dconfig_parsing.c233 char *next_token; local
322 if ((next_token = strtok_r(value, SEP_COMMA, &lasts)) == NULL) {
332 while (next_token) {
333 if ((pmech = create_umech(next_token)) == NULL) {
347 next_token = strtok_r(NULL, SEP_COMMA, &lasts);
/illumos-gate/usr/src/cmd/bnu/
H A Dpermission.c116 extern char *next_token(), *nextarg();
580 p = next_token (p, &pair);
615 next_token (string, pair) function
/illumos-gate/usr/src/cmd/cmd-crypto/cryptoadm/
H A Dadm_kef_util.c185 char *next_token; local
208 if ((next_token = strtok(value, SEP_COMMA)) == NULL) {
213 if ((pmech = create_mech(next_token)) == NULL) {
236 while (next_token) {
237 if (next_token = strtok(NULL, SEP_COMMA)) {
238 if ((pmech = create_mech(next_token)) == NULL) {

Completed in 60 milliseconds