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

/fuchsia/zircon/third_party/ulib/musl/include/
H A Dpwd.h19 struct passwd { struct
31 struct passwd* getpwent(void);
33 struct passwd* getpwuid(uid_t);
34 struct passwd* getpwnam(const char*);
35 int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**);
36 int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**);
39 struct passwd* fgetpwent(FILE*);
40 int putpwent(const struct passwd*, FIL
[all...]
/fuchsia/zircon/third_party/ulib/musl/src/passwd/
H A Dfgetpwent.c4 struct passwd* fgetpwent(FILE* f) {
6 static struct passwd pw;
8 struct passwd* res;
H A Dgetpwent.c5 static struct passwd pw;
16 struct passwd* getpwent() {
17 struct passwd* res;
19 f = fopen("/etc/passwd", "rbe");
26 struct passwd* getpwuid(uid_t uid) {
27 struct passwd* res;
32 struct passwd* getpwnam(const char* name) {
33 struct passwd* res;
H A Dpwf.h10 int __getpwent_a(FILE* f, struct passwd* pw, char** line, size_t* size, struct passwd** res);
11 int __getpw_a(const char* name, uid_t uid, struct passwd* pw, char** buf, size_t* size,
12 struct passwd** res);
H A Dgetpw_r.c5 static int getpw_r(const char* name, uid_t uid, struct passwd* pw, char* buf, size_t size,
6 struct passwd** res) {
19 FIX(passwd);
28 int getpwnam_r(const char* name, struct passwd* pw, char* buf, size_t size, struct passwd** res) {
32 int getpwuid_r(uid_t uid, struct passwd* pw, char* buf, size_t size, struct passwd** res) {
H A Dputpwent.c5 int putpwent(const struct passwd* pw, FILE* f) {
H A Dgetpwent_a.c10 int __getpwent_a(FILE* f, struct passwd* pw, char** line, size_t* size, struct passwd** res) {
H A Dgetgr_r.c25 FIX(passwd);
H A Dgetpw_a.c18 int __getpw_a(const char* name, uid_t uid, struct passwd* pw, char** buf, size_t* size,
19 struct passwd** res) {
25 f = fopen("/etc/passwd", "rbe");
/fuchsia/zircon/third_party/ulib/musl/src/legacy/
H A Dcuserid.c7 struct passwd pw, *ppw;
/fuchsia/zircon/third_party/ulib/musl/
H A Dmusl-rules.mk529 $(LOCAL_DIR)/src/passwd/fgetgrent.c \
530 $(LOCAL_DIR)/src/passwd/fgetpwent.c \
531 $(LOCAL_DIR)/src/passwd/getgr_a.c \
532 $(LOCAL_DIR)/src/passwd/getgr_r.c \
533 $(LOCAL_DIR)/src/passwd/getgrent.c \
534 $(LOCAL_DIR)/src/passwd/getgrent_a.c \
535 $(LOCAL_DIR)/src/passwd/getgrouplist.c \
536 $(LOCAL_DIR)/src/passwd/getpw_a.c \
537 $(LOCAL_DIR)/src/passwd/getpw_r.c \
538 $(LOCAL_DIR)/src/passwd/getpwen
[all...]
/fuchsia/zircon/third_party/uapp/dash/src/
H A Dexpand.c171 struct passwd *pw = getpwnam(name);

Completed in 53 milliseconds