HomeSort by relevance Sort by last modified time
    Searched refs:DONTAUDIT (Results 1 - 11 of 11) sorted by null

  /external/selinux/python/semanage/
semanage-bash-completion.sh 76 [DONTAUDIT]='dontaudit'
151 elif __contains_word "$command" ${VERBS[DONTAUDIT]} ; then
  /external/selinux/checkpolicy/
policy_scan.l 146 DONTAUDIT |
147 dontaudit { return(DONTAUDIT); }
policy_parse.y 130 %token DONTAUDIT
448 cond_dontaudit_def : DONTAUDIT names names ':' names names ';'
486 dontaudit_def : DONTAUDIT names names ':' names names ';'
    [all...]
  /external/selinux/libselinux/src/
audit2why.c 26 #define DONTAUDIT 1
391 RETURN(DONTAUDIT)
483 PyModule_AddIntConstant(m,"DONTAUDIT", DONTAUDIT);
  /external/selinux/python/sepolgen/src/sepolgen/
policygen.py 85 self.dontaudit = False
122 def set_gen_dontaudit(self, dontaudit):
123 self.dontaudit = dontaudit
169 if self.dontaudit:
170 rule.rule_type = rule.DONTAUDIT
181 if av.type == audit2why.DONTAUDIT:
182 rule.comment += "\n#!!!! This avc has a dontaudit rule in the current policy"
223 if self.dontaudit:
refpolicy.py 505 allow, dontaudit, and auditallow (indicated by the flags self.ALLOW,
506 self.DONTAUDIT, and self.AUDITALLOW respectively).
518 DONTAUDIT = 1
535 elif self.rule_type == self.DONTAUDIT:
536 return "dontaudit"
refparser.py 112 'DONTAUDIT',
178 'dontaudit' : 'DONTAUDIT',
793 | DONTAUDIT names names COLON names names SEMI
798 if p[1] == 'dontaudit':
799 a.rule_type = refpolicy.AVRule.DONTAUDIT
  /external/selinux/python/sepolgen/tests/
test_refpolicy.py 170 a.rule_type = a.DONTAUDIT
178 b = "dontaudit { foo_t user_t } { user_home_t bar_t }:{ lnk_file file } { read write };".split(' ')
290 a.rule_type = a.DONTAUDIT
  /external/selinux/python/sepolicy/sepolicy/
__init__.py 45 DONTAUDIT = 'dontaudit'
342 valid_types = set([ALLOW, AUDITALLOW, NEVERALLOW, DONTAUDIT, TRANSITION, ROLE_ALLOW])
368 if DONTAUDIT in types:
369 tertypes.append(DONTAUDIT)
    [all...]
  /external/selinux/python/audit2allow/
audit2allow 73 parser.add_option("-D", "--dontaudit", action="store_true",
74 dest="dontaudit", default=False,
75 help="generate policy with dontaudit rules")
259 if rc == audit2why.DONTAUDIT:
260 print("\t\tUnknown - should be dontaudit'd by active policy")
314 g.set_gen_dontaudit(self.__options.dontaudit)
audit2why 73 parser.add_option("-D", "--dontaudit", action="store_true",
74 dest="dontaudit", default=False,
75 help="generate policy with dontaudit rules")
259 if rc == audit2why.DONTAUDIT:
260 print("\t\tUnknown - should be dontaudit'd by active policy")
314 g.set_gen_dontaudit(self.__options.dontaudit)

Completed in 259 milliseconds