Searched refs:username_list (Results 1 - 1 of 1) sorted by relevance

/xnu-2422.115.4/tools/tests/libMicro/apple/
H A Dgetpwnam.c92 static char *username_list; variable
154 // since username_list is static across threads and processes
179 username_list = malloc( optRecords * USERNAME_LEN );
180 if (!username_list) {
186 sprintf(&username_list[i*USERNAME_LEN], "%s%d", default_uprefix, i+1);
187 // debug("creating username %s", &username_list[i*USERNAME_LEN]);
212 err = getpwnam_r( &username_list[index], pwd_ptr, pbuf, BUFSIZE, &tmp_ptr);
214 printf("error: %s -> %s", &username_list[index], strerror(err));
218 debug("not found: %s", &username_list[index]);
224 passwd = getpwnam( &username_list[inde
[all...]

Completed in 17 milliseconds