Lines Matching refs:profile
72 struct aa_profile *profile; member
82 int aa_replace_current_profile(struct aa_profile *profile);
83 int aa_set_current_onexec(struct aa_profile *profile);
84 int aa_set_current_hat(struct aa_profile *profile, u64 token);
100 BUG_ON(!cxt || !cxt->profile); in aa_cred_profile()
101 return cxt->profile; in aa_cred_profile()
152 struct aa_profile *profile; in aa_current_profile() local
153 BUG_ON(!cxt || !cxt->profile); in aa_current_profile()
155 if (PROFILE_INVALID(cxt->profile)) { in aa_current_profile()
156 profile = aa_get_newest_profile(cxt->profile); in aa_current_profile()
157 aa_replace_current_profile(profile); in aa_current_profile()
158 aa_put_profile(profile); in aa_current_profile()
162 return cxt->profile; in aa_current_profile()