Lines Matching refs:self
25 def __init__(self, controllers):
26 self.TAG = self.__class__.__name__
27 super().__init__(self.TAG, controllers)
29 def setup(self):
32 def process(self):
34 randomFile = self.device1.execute_shell_command("ls /dev/random | wc -l").strip()
36 urandomFile = self.device1.execute_shell_command("ls /dev/urandom | wc -l").strip()
40 randomNumber = self.device1.execute_shell_command("cat /dev/random | head -n 10 | md5sum | head -c 10", timeout = 1000).strip()
44 randomNumber = self.device1.execute_shell_command("cat /dev/urandom | head -n 10 | md5sum | head -c 10").strip()
47 def teardown(self):