Lines Matching refs:self
26 def __init__(self, controllers):
27 self.TAG = self.__class__.__name__
28 super().__init__(self.TAG, controllers)
30 def setup(self):
33 def process(self):
35 fileContextFile = self.device1.execute_shell_command("ls /system/etc/selinux/targeted/contexts/file_contexts | wc -l").strip()
37 self.log.info('selinux file configuration file not exist.')
48 fileContextFile = self.device1.execute_shell_command("cat /system/etc/selinux/targeted/contexts/file_contexts")
58 self.log.info('These file\'s lable is not allowed. errorList: [' + ', '.join(errorList) + ']')
61 def teardown(self):