• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/busybox/libpwdgrp/

Lines Matching refs:spwd

75 	struct spwd fgetspent_resultbuf;
81 struct spwd getspuid_resultbuf;
82 struct spwd getspnam_resultbuf;
98 struct spwd getspent_spwd;
99 struct spwd sgetspent_spwd;
168 int fgetspent_r(FILE *__restrict stream, struct spwd *__restrict resultbuf,
170 struct spwd **__restrict result)
218 struct spwd *fgetspent(FILE *stream)
221 struct spwd *resultbuf = RESULTBUF(fgetspent);
223 struct spwd *result;
231 int sgetspent_r(const char *string, struct spwd *result_buf,
232 char *buffer, size_t buflen, struct spwd **result)
283 #define GETXXKEY_R_ENTTYPE struct spwd
337 int getspuid_r(uid_t uid, struct spwd *__restrict resultbuf,
339 struct spwd **__restrict result)
357 struct spwd *getspuid(uid_t uid)
360 struct spwd *resultbuf = RESULTBUF(getspuid);
362 struct spwd *result;
394 struct spwd *getspnam(const char *name)
397 struct spwd *resultbuf = RESULTBUF(getspnam);
399 struct spwd *result;
536 int getspent_r(struct spwd *resultbuf, char *buffer,
537 size_t buflen, struct spwd **result)
586 struct spwd *getspent(void)
589 static struct spwd spwd;
590 struct spwd *result;
592 getspent_r(&spwd, line_buff, sizeof(line_buff), &result);
596 struct spwd *sgetspent(const char *string)
599 static struct spwd spwd;
600 struct spwd *result;
602 sgetspent_r(string, &spwd, line_buff, sizeof(line_buff), &result);
741 offsetof(struct spwd, sp_lstchg), /* 2 - not a char ptr */
742 offsetof(struct spwd, sp_min), /* 3 - not a char ptr */
743 offsetof(struct spwd, sp_max), /* 4 - not a char ptr */
744 offsetof(struct spwd, sp_warn), /* 5 - not a char ptr */
745 offsetof(struct spwd, sp_inact), /* 6 - not a char ptr */
746 offsetof(struct spwd, sp_expire) /* 7 - not a char ptr */
749 int putspent(const struct spwd *p, FILE *stream)
951 offsetof(struct spwd, sp_namp), /* 0: char* */
952 offsetof(struct spwd, sp_pwdp), /* 1: char* */
953 offsetof(struct spwd, sp_lstchg), /* 2: long */
954 offsetof(struct spwd, sp_min), /* 3: long */
955 offsetof(struct spwd, sp_max), /* 4: long */
956 offsetof(struct spwd, sp_warn), /* 5: long */
957 offsetof(struct spwd, sp_inact), /* 6: long */
958 offsetof(struct spwd, sp_expire), /* 7: long */
959 offsetof(struct spwd, sp_flag) /* 8: unsigned long */