Lines Matching refs:resp
89 pw_response_header resp; in cache_addpw() member
93 assert (offsetof (struct dataset, resp) == offsetof (struct datahead, data)); in cache_addpw()
140 memcpy (&dataset->resp, ¬found, total); in cache_addpw()
220 total - offsetof (struct dataset, resp), in cache_addpw()
224 dataset->resp.version = NSCD_VERSION; in cache_addpw()
225 dataset->resp.found = 1; in cache_addpw()
226 dataset->resp.pw_name_len = pw_name_len; in cache_addpw()
227 dataset->resp.pw_passwd_len = pw_passwd_len; in cache_addpw()
228 dataset->resp.pw_uid = pwd->pw_uid; in cache_addpw()
229 dataset->resp.pw_gid = pwd->pw_gid; in cache_addpw()
230 dataset->resp.pw_gecos_len = pw_gecos_len; in cache_addpw()
231 dataset->resp.pw_dir_len = pw_dir_len; in cache_addpw()
232 dataset->resp.pw_shell_len = pw_shell_len; in cache_addpw()
259 && memcmp (&dataset->resp, dh->data, in cache_addpw()
260 dh->allocsize - offsetof (struct dataset, resp)) == 0) in cache_addpw()
295 if (writeall (fd, &dataset->resp, dataset->head.recsize) in cache_addpw()