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

  /external/selinux/sepolgen/src/sepolgen/
policygen.py 84 self.dontaudit = False
120 def set_gen_dontaudit(self, dontaudit):
121 self.dontaudit = dontaudit
159 if self.dontaudit:
160 rule.rule_type = rule.DONTAUDIT
166 if av.type == audit2why.DONTAUDIT:
167 rule.comment += "\n#!!!! This avc has a dontaudit rule in the current policy"
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
policygen.py 84 self.dontaudit = False
120 def set_gen_dontaudit(self, dontaudit):
121 self.dontaudit = dontaudit
159 if self.dontaudit:
160 rule.rule_type = rule.DONTAUDIT
166 if av.type == audit2why.DONTAUDIT:
167 rule.comment += "\n#!!!! This avc has a dontaudit rule in the current policy"
  /system/sepolicy/
Android.mk 99 $(hide) sed '/dontaudit/d' $@ > $@.dontaudit
104 $(hide) $(HOST_OUT_EXECUTABLES)/checkpolicy -M -c $(POLICYVERS) -o $(dir $<)/$(notdir $@).dontaudit $<.dontaudit
174 $(hide) sed '/dontaudit/d' $@ > $@.dontaudit
system_server.te 65 dontaudit system_server self:capability sys_ptrace;
  /external/selinux/policycoreutils/sepolicy/
search.c 89 bool dontaudit; member in struct:options
656 if (!opt->all && !opt->allow && !opt->nallow && !opt->auditallow && !opt->dontaudit) {
674 if (opt->dontaudit || opt->all)
885 bool dontaudit,
904 cmd_opts.dontaudit = dontaudit;
1015 int dontaudit = Dict_ContainsInt(dict, "dontaudit"); variable
1028 return search(allow, neverallow, auditallow, dontaudit, transition, role_allow, src_name, tgt_name, class_name, permlist);
  /external/selinux/checkpolicy/
policy_scan.l 143 DONTAUDIT |
144 dontaudit { return(DONTAUDIT); }
  /external/selinux/policycoreutils/audit2allow/
audit2allow 73 parser.add_option("-D", "--dontaudit", action="store_true",
74 dest="dontaudit", default=False,
75 help="generate policy with dontaudit rules")
254 if rc == audit2why.DONTAUDIT:
255 print("\t\tUnknown - should be dontaudit'd by active policy")
302 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")
254 if rc == audit2why.DONTAUDIT:
255 print("\t\tUnknown - should be dontaudit'd by active policy")
301 g.set_gen_dontaudit(self.__options.dontaudit)
  /external/selinux/prebuilts/bin/
sediff.py 57 terule.add_argument("--dontaudit", action="store_true", help="Print dontaudit rule differences")
91 args.allow, args.neverallow, args.auditallow, args.dontaudit,
551 if all_differences or args.dontaudit:
553 args.dontaudit:
554 print("Dontaudit Rules ({0} Added, {1} Removed, {2} Modified)".format(
559 print(" Added Dontaudit Rules: {0}".format(len(diff.added_dontaudits)))
564 print(" Removed Dontaudit Rules: {0}".format(len(diff.removed_dontaudits)))
569 print(" Modified Dontaudit Rules: {0}".format(len(diff.modified_dontaudits)))
    [all...]
  /external/selinux/libsepol/tests/policies/test-cond/
refpolicy-base.conf     [all...]
  /external/selinux/policycoreutils/semanage/
seobject.py 415 def toggle(self, dontaudit):
416 if dontaudit not in ["on", "off"]:
417 raise ValueError(_("dontaudit requires either 'on' or 'off'"))
419 rc = semanage_set_disable_dontaudit(self.sh, dontaudit == "off")
    [all...]

Completed in 289 milliseconds