Searched refs:fcon_dict (Results 1 – 2 of 2) sorted by relevance
/external/selinux/gui/ |
D | fcontextPage.py | 108 def match(self, fcon_dict, k, filter): argument 115 for con in fcon_dict[k]: 127 fcon_dict = self.fcontext.get_all(self.local) 128 for k in sorted(fcon_dict.keys()): 129 if not self.match(fcon_dict, k, filter): 134 if fcon_dict[k]: 135 rec = "%s:%s" % (fcon_dict[k][2], seobject.translate(fcon_dict[k][3], False))
|
/external/selinux/python/semanage/ |
D | seobject.py | 2638 fcon_dict = self.get_all(True) 2639 for k in sorted(fcon_dict.keys()): 2640 if fcon_dict[k]: 2641 if fcon_dict[k][3]: 2642 …-a -f %s -t %s -r '%s' '%s'" % (file_type_str_to_option[k[1]], fcon_dict[k][2], fcon_dict[k][3], k… 2644 … l.append("-a -f %s -t %s '%s'" % (file_type_str_to_option[k[1]], fcon_dict[k][2], k[0])) 2652 fcon_dict = self.get_all(locallist) 2653 if len(fcon_dict) != 0: 2656 for k in sorted(fcon_dict.keys()): 2657 if fcon_dict[k]: [all …]
|