Home
last modified time | relevance | path

Searched refs:UIDC (Results 1 – 4 of 4) sorted by relevance

/NextBSD/bin/pax/
HDcache.c62 static UIDC **uidtb = NULL; /* uid to name cache */
64 static UIDC **usrtb = NULL; /* user name to uid cache */
83 if ((uidtb = (UIDC **)calloc(UID_SZ, sizeof(UIDC *))) == NULL) { in uidtb_start()
131 if ((usrtb = (UIDC **)calloc(UNM_SZ, sizeof(UIDC *))) == NULL) { in usrtb_start()
175 UIDC *ptr; in name_uid()
201 ptr = uidtb[uid % UID_SZ] = (UIDC *)malloc(sizeof(UIDC)); in name_uid()
316 UIDC *ptr; in uid_name()
346 (UIDC *)malloc(sizeof(UIDC)); in uid_name()
HDcache.h65 } UIDC; typedef
/NextBSD/contrib/libc-pwcache/
HDpwcache.c137 static UIDC **uidtb; /* uid to name cache */
139 static UIDC **usrtb; /* user name to uid cache */
184 if ((uidtb = (UIDC **)calloc(UID_SZ, sizeof(UIDC *))) == NULL) { in uidtb_start()
226 if ((usrtb = (UIDC **)calloc(UNM_SZ, sizeof(UIDC *))) == NULL) { in usrtb_start()
266 UIDC *ptr, **pptr; in user_from_uid()
296 *pptr = ptr = (UIDC *)malloc(sizeof(UIDC)); in user_from_uid()
402 UIDC *ptr, **pptr; in uid_from_user()
434 *pptr = ptr = (UIDC *)malloc(sizeof(UIDC)); in uid_from_user()
HDpwcache.h67 } UIDC; typedef