/src/distrib/utils/libhack/ |
Makefile | 28 tpwent: getpwent.c 29 ${CC} -g -o $@.o -DTEST_MAIN -c getpwent.c
|
getpwent.c | 1 /* $NetBSD: getpwent.c,v 1.12 2011/01/12 23:34:00 joerg Exp $ */ 33 * Copied from: lib/libc/gen/getpwent.c 34 * NetBSD: getpwent.c,v 1.48 2000/10/03 03:22:26 enami Exp 42 #define getpwent _getpwent macro 55 __weak_alias(getpwent,__getpwent50) 87 getpwent(void) function in typeref:struct:passwd *
|
/src/usr.bin/chpass/ |
Makefile | 23 SRCS+= getpwent.c 24 CPPFLAGS.getpwent.c=-UYP
|
/src/lib/libc/compat/gen/ |
compat_getpwent.c | 59 __warn_references(getpwent, 60 "warning: reference to compatibility getpwent(); include <pwd.h> to generate correct reference") 71 __weak_alias(getpwent, _getpwent) 133 getpwent(void) function in typeref:struct:passwd50 *
|
/src/tests/lib/libc/sys/ |
t_setuid.c | 87 while ((pw = getpwent()) != NULL) {
|
/src/lib/libc/gen/ |
Makefile.inc | 22 getpass.c getprogname.c getpwent.c getttyent.c \ 70 getprogname.3 getpwent.3 getttyent.3 getusershell.3 glob.3 \ 149 MLINKS+=getpwent.3 endpwent.3 getpwent.3 setpassent.3 getpwent.3 getpwnam.3 \ 150 getpwent.3 getpwuid.3 getpwent.3 setpwent.3 151 MLINKS+=getpwent.3 getpwnam_r.3 getpwent.3 getpwuid_r.3 getpwent.3 getpwent_r. [all...] |
getpwent.c | 1 /* $NetBSD: getpwent.c,v 1.84 2024/01/20 14:52:47 christos Exp $ */ 89 static char sccsid[] = "@(#)getpwent.c 8.2 (Berkeley) 4/27/95"; 91 __RCSID("$NetBSD: getpwent.c,v 1.84 2024/01/20 14:52:47 christos Exp $"); 2387 getpwent(void) function in typeref:struct:passwd * 2401 r = nsdispatch(NULL, dtab, NSDB_PASSWD, "getpwent", __nsdefaultcompat,
|
/src/games/canfield/cfscores/ |
cfscores.c | 89 while ((pw = getpwent()) != NULL)
|
/src/include/ |
pwd.h | 136 struct passwd *getpwent(void) __RENAME(__getpwent50);
|
/src/lib/libc/compat/include/ |
pwd.h | 65 struct passwd50 *getpwent(void);
|
/src/usr.bin/finger/ |
finger.c | 259 while ((pw = getpwent()) != NULL)
|
/src/games/warp/ |
config.h.SH | 78 /* GETPWENT: 79 * This symbol, if defined, indicates that the getpwent() routine function 82 #$d_getpwent GETPWENT /**/
|
/src/usr.sbin/repquota/ |
repquota.c | 305 while ((pw = getpwent()) != 0)
|
/src/usr.bin/calendar/ |
calendar.c | 186 while ((pw = getpwent()) != NULL) {
|
/src/bin/csh/ |
file.c | 447 if ((pw = getpwent()) == NULL)
|
/src/usr.bin/getent/ |
getent.c | 447 while ((pw = getpwent()) != NULL)
|
/src/lib/libedit/ |
readline.c | 1904 (pass = getpwent()) != NULL
|
/src/usr.sbin/quotacheck/ |
quotacheck.c | 243 while ((pw = getpwent()) != 0)
|
/src/lib/libc/include/ |
namespace.h | 412 #define getpwent _getpwent macro
|
/src/usr.sbin/user/ |
user.c | 496 while ((user_pwd = getpwent()) != NULL) {
|
/src/sys/external/bsd/compiler_rt/dist/lib/msan/tests/ |
msan_test.cc | 3604 TEST(MemorySanitizer, getpwent) { 3606 struct passwd *p = getpwent();
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_common_interceptors.inc | 89 #define getpwent __getpwent50 1990 INTERCEPTOR(__sanitizer_passwd *, getpwent, int dummy) { 1992 COMMON_INTERCEPTOR_ENTER(ctx, getpwent, dummy); 1993 __sanitizer_passwd *res = REAL(getpwent)(dummy); 2005 COMMON_INTERCEPT_FUNCTION(getpwent); \
|