Searched defs:gettok (Results 1 - 8 of 8) sorted by relevance
/illumos-gate/usr/src/lib/libzonecfg/common/ |
H A D | getzoneent.c | 29 * skipping of comment lines, etc., and using gettok() to deal with the ":" 49 * gettok() is a helper function for parsing the index file, used to split 61 gettok(char **cpp) function 130 p = gettok(&cp); 139 p = gettok(&cp); 155 p = gettok(&cp); 162 p = gettok(&cp); 384 zone_state = gettok(&cp); 390 zone_path = gettok(&cp); 391 zone_uuid = gettok( [all...] |
/illumos-gate/usr/src/lib/libc/port/gen/ |
H A D | getpwnam_r.c | 213 gettok(char **nextpp) function 267 passwd->pw_name = p = gettok(&next); /* username */ 290 passwd->pw_passwd = p = gettok(&next); /* password */ 343 (void) gettok(&next); 373 (void) gettok(&next); 378 passwd->pw_gecos = passwd->pw_comment = p = gettok(&next); 386 passwd->pw_dir = p = gettok(&next); 394 passwd->pw_shell = p = gettok(&next);
|
H A D | getgrnam_r.c | 287 gettok(char **nextpp, char sep) function 347 group->gr_name = p = gettok(&next, ':'); 366 group->gr_passwd = p = gettok(&next, ':'); 402 p = gettok(&next, ',');
|
/illumos-gate/usr/src/lib/passwdutil/ |
H A D | switch_utils.c | 264 gettok(nextpp) function 311 passwd->pw_name = p = gettok(&next); /* username */ 334 passwd->pw_passwd = p = gettok(&next); /* password */ 376 p = gettok(&next); 402 p = gettok(&next); 407 passwd->pw_gecos = passwd->pw_comment = p = gettok(&next); 415 passwd->pw_dir = p = gettok(&next); 423 passwd->pw_shell = p = gettok(&next);
|
/illumos-gate/usr/src/lib/libproject/common/ |
H A D | getprojent.c | 351 gettok(char **nextpp, char sep) function 402 p = gettok(&next, ':'); 411 p = gettok(&next, ':'); 427 p = gettok(&next, ':'); 436 if ((users = gettok(&next, ':')) == NULL) { 443 if ((groups = gettok(&next, ':')) == NULL) { 463 p = gettok(&users, ','); 477 p = gettok(&groups, ',');
|
/illumos-gate/usr/src/lib/libshell/common/sh/ |
H A D | streval.c | 427 static int gettok(register struct vars *vp) function 506 op = gettok(vp); 544 op = gettok(vp); 663 if (gettok(vp) != A_RPAR) 696 if(gettok(vp)!=A_COLON)
|
/illumos-gate/usr/src/cmd/sgs/yacc/common/ |
H A D | y2.c | 82 static int gettok(void); 356 t = gettok(); 365 t = gettok(); 369 if ((t = gettok()) != IDENTIFIER) { 373 t = gettok(); 378 if ((t = gettok()) != TYPENAME) 388 t = gettok(); 433 t = gettok(); 453 t = gettok(); 470 t = gettok(); 1098 gettok() function [all...] |
/illumos-gate/usr/src/cmd/sgs/elfedit/common/ |
H A D | elfedit.c | 102 /* State block used by gettok_init() and gettok() */ 2227 * Prepare a GETTOK_STATE struct for gettok(). 2230 * gettok_state - gettok state block to use 2231 * str - Writable buffer to tokenize. Note that gettok() 2251 * gettok_state - State of gettok() operation. Initialized 2252 * by gettok_init(), and passed to gettok(). 2269 gettok(GETTOK_STATE *gettok_state) function 2452 for (tokst.tokst_cnt = 0; gettok(&gettok_state) != 0;
|
Completed in 68 milliseconds