Lines Matching defs:strp
1667 * @strp: Returns - the allocated buffer with the label name. (NOT NULL)
1676 int aa_label_asxprint(char **strp, struct aa_ns *ns, struct aa_label *label,
1681 AA_BUG(!strp);
1688 *strp = kmalloc(size + 1, gfp);
1689 if (!*strp)
1691 return aa_label_snxprint(*strp, size + 1, ns, label, flags);
1696 * @strp: buffer to write to.
1705 int aa_label_acntsxprint(char __counted **strp, struct aa_ns *ns,
1710 AA_BUG(!strp);
1717 *strp = aa_str_alloc(size + 1, gfp);
1718 if (!*strp)
1720 return aa_label_snxprint(*strp, size + 1, ns, label, flags);