OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AVRule
(Results
1 - 8
of
8
) sorted by null
/external/selinux/python/sepolgen/tests/
test_policygen.py
57
self.assertIsInstance(r, refpolicy.
AVRule
)
89
if isinstance(r, refpolicy.
AVRule
):
test_refpolicy.py
155
a = refpolicy.
AVRule
()
163
a = refpolicy.
AVRule
()
274
a = refpolicy.
AVRule
()
289
a = refpolicy.
AVRule
()
test_access.py
236
rule = refpolicy.
AVRule
()
271
rule = refpolicy.
AVRule
()
/external/selinux/python/sepolgen/src/sepolgen/
output.py
103
if isinstance(b, refpolicy.
AVRule
):
refparser.py
797
a = refpolicy.
AVRule
()
799
a.rule_type = refpolicy.
AVRule
.DONTAUDIT
801
a.rule_type = refpolicy.
AVRule
.AUDITALLOW
803
a.rule_type = refpolicy.
AVRule
.NEVERALLOW
1109
can_exec.children.append(refpolicy.
AVRule
(av))
policygen.py
167
rule = refpolicy.
AVRule
(av)
404
for
avrule
in node.avrules():
405
r.types.update(
avrule
.src_types)
406
r.types.update(
avrule
.tgt_types)
407
for obj in
avrule
.obj_classes:
408
r.add_obj_class(obj,
avrule
.perms)
interfaces.py
259
for
avrule
in interface.avrules():
260
if
avrule
.rule_type != refpolicy.
AVRule
.ALLOW:
266
avs = access.avrule_to_access_vectors(
avrule
)
refpolicy.py
110
return filter(lambda x: isinstance(x,
AVRule
), walktree(self))
501
class
AVRule
(Leaf):
504
The
AVRule
class represents all varieties of AV rules including
626
This class is very similar to the
AVRule
class, but is for representing
Completed in 4244 milliseconds