Home | History | Annotate | Download | only in sepolicy-analyze

Lines Matching refs:avrule

374     struct avrule *neverallows = NULL, *avrule;
399 avrule = calloc(1, sizeof *avrule);
400 if (!avrule)
403 avrule->specified = AVRULE_NEVERALLOW;
405 if (read_typeset(policydb, &p, end, &avrule->stypes, &avrule->flags))
408 if (read_typeset(policydb, &p, end, &avrule->ttypes, &avrule->flags))
411 if (read_classperms(policydb, &p, end, &avrule->perms))
423 avrule->next = neverallows;
424 neverallows = avrule;