Searched refs:avrule (Results 1 – 1 of 1) sorted by relevance
/system/sepolicy/tools/sepolicy-analyze/ |
D | neverallow.c | 381 struct avrule *neverallows = NULL, *avrule = NULL; in check_neverallows() local 407 avrule = calloc(1, sizeof *avrule); in check_neverallows() 408 if (!avrule) in check_neverallows() 411 avrule->specified = AVRULE_NEVERALLOW; in check_neverallows() 413 if (read_typeset(policydb, &p, end, &avrule->stypes, &avrule->flags)) in check_neverallows() 416 if (read_typeset(policydb, &p, end, &avrule->ttypes, &avrule->flags)) in check_neverallows() 419 if (read_classperms(policydb, &p, end, &avrule->perms)) in check_neverallows() 431 avrule->next = neverallows; in check_neverallows() 432 neverallows = avrule; in check_neverallows() 448 if (avrule != neverallows) in check_neverallows() [all …]
|