Lines Matching refs:uid
64 "\tuid2str uid\n"
173 uid_t uid;
206 stat = nfs_idmap_str_uid(&str, &uid);
207 printf(gettext("%u stat=%s \n"), uid, mapstat(stat));
226 uid = atoi(argv[1]);
229 stat = nfs_idmap_uid_str(uid, &str);
316 * Convert a user utf-8 string identifier into its local uid.
319 nfs_idmap_str_uid(utf8string *u8s, uid_t *uid)
340 *uid = UID_NOBODY;
389 *uid = resp->u_res.uid;
393 *uid = resp->u_res.uid;
410 *uid = UID_NOBODY;
418 * Convert a uid into its utf-8 string representation.
421 nfs_idmap_uid_str(uid_t uid, /* uid to map */
422 utf8string *u8s) /* resulting utf-8 string for uid */
433 if (uid == UID_NOBODY) {
443 maparg.u_arg.uid = uid;