Lines Matching refs:aux
949 struct audit_aux_data *aux; in audit_free_aux() local
951 while ((aux = context->aux)) { in audit_free_aux()
952 context->aux = aux->next; in audit_free_aux()
953 kfree(aux); in audit_free_aux()
955 context->aux = NULL; in audit_free_aux()
956 while ((aux = context->aux_pids)) { in audit_free_aux()
957 context->aux_pids = aux->next; in audit_free_aux()
958 kfree(aux); in audit_free_aux()
1679 struct audit_aux_data *aux; in audit_log_exit() local
1717 for (aux = context->aux; aux; aux = aux->next) { in audit_log_exit()
1719 ab = audit_log_start(context, GFP_KERNEL, aux->type); in audit_log_exit()
1723 switch (aux->type) { in audit_log_exit()
1726 struct audit_aux_data_bprm_fcaps *axs = (void *)aux; in audit_log_exit()
1771 for (aux = context->aux_pids; aux; aux = aux->next) { in audit_log_exit()
1772 struct audit_aux_data_pids *axs = (void *)aux; in audit_log_exit()
2804 ax->d.next = context->aux; in __audit_log_bprm_fcaps()
2805 context->aux = (void *)ax; in __audit_log_bprm_fcaps()