Lines Matching refs:name
111 char name[];
115 ((struct counted_str *)(str - offsetof(struct counted_str, name)))
139 * @name: name of the object
140 * @hname - The hierarchical name
145 const char *name;
153 * @name: hname to find the base profile name component of (NOT NULL)
155 * Returns: the tail (base profile name) name component of an hname
169 * __policy_find - find a policy by @name on a policy list
171 * @name: name to search for (NOT NULL)
175 * Returns: unrefcounted policy that match @name or NULL if not found
178 const char *name)
183 if (!strcmp(policy->name, name))
190 * __policy_strn_find - find a policy that's name matches @len chars of @str
200 * other wise it allows searching for policy by a partial match of name
208 if (aa_strneq(policy->name, str, len))
216 const char *name, gfp_t gfp);