Searched refs:to_space_str (Results 1 – 4 of 4) sorted by relevance
/external/selinux/python/sepolgen/src/sepolgen/ |
D | refpolicy.py | 259 def to_space_str(self): member in IdSet 468 s = s + "alias %s" % self.aliases.to_space_str() 480 return "typealias %s alias %s;" % (self.type, self.aliases.to_space_str()) 560 self.src_types.to_space_str(), 561 self.tgt_types.to_space_str(), 562 self.obj_classes.to_space_str(), 563 self.perms.to_space_str()) 617 self.src_types.to_space_str(), 618 self.tgt_types.to_space_str(), 619 self.obj_classes.to_space_str(), [all …]
|
D | access.py | 151 self.obj_class, self.perms.to_space_str())
|
D | policygen.py | 298 (av.src_type, av.tgt_type, av.obj_class, av.perms.to_space_str()))
|
/external/selinux/python/sepolgen/tests/ |
D | test_refpolicy.py | 28 s = s.to_space_str().split(' ') 35 self.assertEqual(s.to_space_str(), "read") 243 a.src_types.to_space_str = lambda: "second" 244 a.tgt_types.to_space_str = lambda: "third" 245 a.obj_classes.to_space_str = lambda: "fourth"
|