Lines Matching refs:in
13 This library is distributed in the hope that it will be useful,
153 static wbcErr copy_pwd(struct passwd *in, struct passwd **out)
163 pw->pw_name = strdup(in->pw_name);
168 pw->pw_passwd = strdup(in->pw_passwd);
173 pw->pw_uid = in->pw_uid;
174 pw->pw_gid = in->pw_gid;
176 pw->pw_gecos = strdup(in->pw_gecos);
181 pw->pw_shell = strdup(in->pw_shell);
186 pw->pw_dir = strdup(in->pw_dir);
220 /* Fill in a struct passwd* for a domain user based on username */
255 /* Fill in a struct passwd* for a domain user based on uid */
290 /* Fill in a struct passwd* for a domain user based on sid */
326 static wbcErr copy_grp(struct group *in, struct group **out)
338 gr->gr_name = strdup(in->gr_name);
343 gr->gr_passwd = strdup(in->gr_passwd);
348 gr->gr_gid = in->gr_gid;
350 for (members = 0; in->gr_mem[members] != NULL; members++);
358 gr->gr_mem[c] = strdup(in->gr_mem[c]);
371 /* Fill in a struct passwd* for a domain user based on username */
415 /* Fill in a struct passwd* for a domain user based on uid */
634 /* nss modules may skip the primary group when we pass it in so always
635 * add it in advance */