Home
last modified time | relevance | path

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

/mirbsd/src/bin/pax/
Dcache.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()
205 ptr = uidtb[uid % UID_SZ] = malloc(sizeof(UIDC)); in name_uid()
314 UIDC *ptr; in uid_name()
348 (UIDC *)malloc(sizeof(UIDC)); in uid_name()
Dcache.h68 } UIDC; typedef
/mirbsd/src/usr.sbin/makefs/nbsrc/lib/libc/gen/
Dpwcache.c147 static UIDC **uidtb; /* uid to name cache */
149 static UIDC **usrtb; /* user name to uid cache */
194 if ((uidtb = (UIDC **)calloc(UID_SZ, sizeof(UIDC *))) == NULL) { in uidtb_start()
236 if ((usrtb = (UIDC **)calloc(UNM_SZ, sizeof(UIDC *))) == NULL) { in usrtb_start()
276 UIDC *ptr, **pptr; in user_from_uid()
306 *pptr = ptr = (UIDC *)malloc(sizeof(UIDC)); in user_from_uid()
412 UIDC *ptr, **pptr; in uid_from_user()
444 *pptr = ptr = (UIDC *)malloc(sizeof(UIDC)); in uid_from_user()
Dpwcache.h69 } UIDC; typedef