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

Lines Matching defs:avrule

371     struct avrule *neverallows = NULL, *avrule;
396 avrule = calloc(1, sizeof *avrule);
397 if (!avrule)
400 avrule->specified = AVRULE_NEVERALLOW;
402 if (read_typeset(policydb, &p, end, &avrule->stypes, &avrule->flags))
405 if (read_typeset(policydb, &p, end, &avrule->ttypes, &avrule->flags))
408 if (read_classperms(policydb, &p, end, &avrule->perms))
420 avrule->next = neverallows;
421 neverallows = avrule;