• Home
  • Raw
  • Download

Lines Matching refs:type

65 	int               type;		       /* User / Group */  member
83 new->type = itm->type; in ent_init()
121 if (ent->type == IDMAP_TYPE_GROUP) in idtoname_hash()
136 qword_add(bpp, blen, ent->type == IDMAP_TYPE_GROUP ? "group" : "user"); in idtoname_request()
154 return (a->id == b->id && a->type == b->type && in idtoname_match()
169 ent->type == IDMAP_TYPE_GROUP ? "group" : "user", in idtoname_show()
231 ent.type = strcmp(buf1, "user") == 0 ? in idtoname_parse()
321 qword_add(bpp, blen, ent->type == IDMAP_TYPE_GROUP ? "group" : "user"); in nametoid_request()
339 return (a->type == b->type && strcmp(a->name, b->name) == 0 && in nametoid_match()
354 ent->type == IDMAP_TYPE_GROUP ? "group" : "user", in nametoid_show()
407 ent.type = strcmp(buf1, "user") == 0 ? in nametoid_parse()
527 idmap_name_to_id(struct svc_rqst *rqstp, int type, const char *name, u32 namelen, in idmap_name_to_id() argument
531 .type = type, in idmap_name_to_id()
551 idmap_id_to_name(struct svc_rqst *rqstp, int type, uid_t id, char *name) in idmap_id_to_name() argument
555 .type = type, in idmap_id_to_name()
573 numeric_name_to_id(struct svc_rqst *rqstp, int type, const char *name, u32 namelen, uid_t *id) in numeric_name_to_id() argument
589 do_name_to_id(struct svc_rqst *rqstp, int type, const char *name, u32 namelen, uid_t *id) in do_name_to_id() argument
592 if (numeric_name_to_id(rqstp, type, name, namelen, id)) in do_name_to_id()
598 return idmap_name_to_id(rqstp, type, name, namelen, id); in do_name_to_id()
602 do_id_to_name(struct svc_rqst *rqstp, int type, uid_t id, char *name) in do_id_to_name() argument
606 return idmap_id_to_name(rqstp, type, id, name); in do_id_to_name()