Lines Matching defs:name
100 char name[];
104 ((struct counted_str *)(str - offsetof(struct counted_str, name)))
128 * @name: name of the object
129 * @hname - The hierarchical name
134 const char *name;
142 * @name: hname to find the base profile name component of (NOT NULL)
144 * Returns: the tail (base profile name) name component of an hname
158 * __policy_find - find a policy by @name on a policy list
160 * @name: name to search for (NOT NULL)
164 * Returns: unrefcounted policy that match @name or NULL if not found
167 const char *name)
172 if (!strcmp(policy->name, name))
179 * __policy_strn_find - find a policy that's name matches @len chars of @str
189 * other wise it allows searching for policy by a partial match of name
197 if (aa_strneq(policy->name, str, len))
205 const char *name, gfp_t gfp);