HomeSort by relevance Sort by last modified time
    Searched full:typebounds (Results 1 - 25 of 38) sorted by null

1 2

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
bounds.py 31 raise TypeError("typebounds rules cannot be looked up.")
36 if t not in ["typebounds"]:
44 """A typebounds statement."""
52 ruletype = "typebounds"
__init__.py 391 """The number of typebounds rules."""
392 return sum(1 for b in self.bounds() if b.ruletype == "typebounds")
465 """Generator which yields all *bounds statements (typebounds, etc.)"""
  /external/selinux/secilc/test/
bounds.cil 48 (typebounds b_t1 b_t1_c)
85 (typebounds b_t2 b_t2_c)
126 (typebounds b_t3 b_t3_c)
159 (typebounds b_t4 b_t4_c)
196 (typebounds b_t5 b_t5_c)
222 (typebounds b_t6a b_t6a_c)
223 (typebounds b_t6b b_t6b_c)
integration.cil 78 (typebounds device_t bin_t)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/diff/
bounds.py 43 self.log.info("Generating typebounds differences from {0.left_policy} to {0.right_policy}".
68 if rule.ruletype == "typebounds":
76 if rule.ruletype == "typebounds":
  /external/selinux/libsepol/cil/test/integration_testing/
nonmls.cil 63 (typebounds typea_t typeb_t)
mls_policy.cil 92 (typebounds typea_t typeb_t)
  /external/selinux/checkpolicy/
policy_scan.l 93 TYPEBOUNDS |
94 typebounds { return(TYPEBOUNDS); }
policy_parse.y 101 %token TYPEBOUNDS
347 typebounds_def : TYPEBOUNDS identifier id_comma_list ';'
    [all...]
  /external/selinux/secilc/docs/
README.md 129 * [typebounds](cil_type_statements.md#typebounds)
cil_type_statements.md 216 typebounds
225 (typebounds parent_type_id child_type_id)
236 <td align="left"><p><code>typebounds</code></p></td>
237 <td align="left"><p>The <code>typebounds</code> keyword.</p></td>
260 (typebounds process child.process)
  /external/selinux/libselinux/man/man3/
getcon.3 102 the bounded relation is defined through typebounds statements in the
  /external/selinux/prebuilts/bin/
seinfo.py 84 queries.add_argument("--typebounds", help="Print typebounds statements.", dest="typeboundsquery",
241 q = setools.BoundsQuery(p, ruletype=["typebounds"])
245 components.append(("Typebounds", q, lambda x: x.statement()))
329 print(" Defaults: {0:7} Typebounds: {1:7}".format(
sediff.py 102 other.add_argument("--typebounds", action="store_true", help="Print typebounds differences")
117 args.validatetrans, args.mlsvalidatetrans, args.typebounds,
    [all...]
  /external/selinux/python/sepolgen/src/sepolgen/
refparser.py 116 'TYPEBOUNDS',
182 'typebounds' : 'TYPEBOUNDS',
830 '''typebound_def : TYPEBOUNDS IDENTIFIER comma_list SEMI'''
refpolicy.py 115 def typebounds(self): member in class:Node
539 return "typebounds %s %s;" % (self.type, self.tgt_types.to_comma_str())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
refparser.py 116 'TYPEBOUNDS',
182 'typebounds' : 'TYPEBOUNDS',
830 '''typebound_def : TYPEBOUNDS IDENTIFIER comma_list SEMI'''
refpolicy.py 115 def typebounds(self): member in class:Node
539 return "typebounds %s %s;" % (self.type, self.tgt_types.to_comma_str())
  /external/selinux/libsepol/cil/test/unit/
test_cil_build_ast.c     [all...]
test_cil_resolve_ast.c     [all...]
  /external/selinux/libsepol/cil/src/
cil_policy.c 1072 fprintf(out, "typebounds %s %s\n", parent->datum.fqn, child->datum.fqn);
    [all...]
cil_tree.c 1083 cil_log(CIL_INFO, "TYPEBOUNDS: type: %s, bounds: %s\n", bnds->parent_str, bnds->child_str);
    [all...]
cil.c 165 CIL_KEY_TYPEBOUNDS = cil_strpool_add("typebounds");
    [all...]
  /external/selinux/libsepol/src/
kernel_to_cil.c 1457 sepol_printf(out, "(typebounds %s %s)\n", parent, child);
    [all...]
kernel_to_conf.c 1423 sepol_printf(out, "typebounds %s %s;\n", parent, child);
    [all...]

Completed in 461 milliseconds

1 2