Home | History | Annotate | Download | only in tests

Lines Matching refs:Policy

4 import policy
11 Use file_contexts and policy to verify Treble requirements
103 # selinux policy contains neverallow rules that enforce that only zygote
232 usage +="plat_file_contexts -p policy [--test test] [--help]"
236 parser.add_option("-p", "--policy", dest="policy", metavar="FILE")
249 if not options.policy:
250 sys.exit("Must specify monolithic policy file\n" + parser.usage)
251 if not os.path.exists(options.policy):
252 sys.exit("Error: policy file " + options.policy + " does not exist\n"
262 pol = policy.Policy(options.policy, options.file_contexts, options.libpath)