Lines Matching full:string
22 * @string: Returns - string containing the profile info (NOT NULL)
24 * Returns: length of @string on success else error on failure
28 * Creates a string containing the namespace_name://profile_name for
31 * Returns: size of string placed in @string else error code on failure
33 int aa_getprocattr(struct aa_label *label, char **string) in aa_getprocattr() argument
49 *string = kmalloc(len + 2, GFP_KERNEL); in aa_getprocattr()
50 if (!*string) { in aa_getprocattr()
55 len = aa_label_snxprint(*string, len + 2, current_ns, label, in aa_getprocattr()
63 (*string)[len] = '\n'; in aa_getprocattr()
64 (*string)[len + 1] = 0; in aa_getprocattr()
71 * split_token_from_name - separate a string of form <token>^<name>
73 * @args: string to parse (NOT NULL)