Lines Matching defs:strp
1678 * @strp: Returns - the allocated buffer with the label name. (NOT NULL)
1687 int aa_label_asxprint(char **strp, struct aa_ns *ns, struct aa_label *label,
1692 AA_BUG(!strp);
1699 *strp = kmalloc(size + 1, gfp);
1700 if (!*strp)
1702 return aa_label_snxprint(*strp, size + 1, ns, label, flags);
1707 * @strp: buffer to write to.
1716 int aa_label_acntsxprint(char __counted **strp, struct aa_ns *ns,
1721 AA_BUG(!strp);
1728 *strp = aa_str_alloc(size + 1, gfp);
1729 if (!*strp)
1731 return aa_label_snxprint(*strp, size + 1, ns, label, flags);