Lines Matching refs:pn

98 enter_lastlog(PERSON *pn)  in enter_lastlog()  argument
105 ut = getutxuser(pn->name); in enter_lastlog()
106 if ((w = pn->whead) == NULL) in enter_lastlog()
119 for (w = pn->whead; doit && w != NULL; w = w->next) in enter_lastlog()
125 w = walloc(pn); in enter_lastlog()
135 enter_where(struct utmpx *ut, PERSON *pn) in enter_where() argument
139 w = walloc(pn); in enter_where()
151 PERSON *pn; in enter_person() local
162 memmove(&pn, data.data, sizeof pn); in enter_person()
163 return (pn); in enter_person()
170 pn = palloc(); in enter_person()
171 userinfo(pn, pw); in enter_person()
172 pn->whead = NULL; in enter_person()
175 data.data = &pn; in enter_person()
178 return (pn); in enter_person()
216 walloc(PERSON *pn) in walloc() argument
222 if (pn->whead == NULL) in walloc()
223 pn->whead = pn->wtail = w; in walloc()
225 pn->wtail->next = w; in walloc()
226 pn->wtail = w; in walloc()
317 userinfo(PERSON *pn, struct passwd *pw) in userinfo() argument
323 pn->realname = pn->office = pn->officephone = pn->homephone = NULL; in userinfo()
325 pn->uid = pw->pw_uid; in userinfo()
326 if ((pn->name = strdup(pw->pw_name)) == NULL) in userinfo()
328 if ((pn->dir = strdup(pw->pw_dir)) == NULL) in userinfo()
330 if ((pn->shell = strdup(pw->pw_shell)) == NULL) in userinfo()
356 if ((pn->realname = strdup(name)) == NULL) in userinfo()
358 pn->office = ((p = strsep(&bp, ",")) && *p) ? in userinfo()
360 pn->officephone = ((p = strsep(&bp, ",")) && *p) ? in userinfo()
362 pn->homephone = ((p = strsep(&bp, ",")) && *p) ? in userinfo()
365 pn->mailrecv = -1; /* -1 == not_valid */ in userinfo()
372 pn->mailrecv = sb.st_mtime; in userinfo()
373 pn->mailread = sb.st_atime; in userinfo()