Home | History | Annotate | Download | only in shell_performance

Lines Matching refs:cmd

38     def VtsShell(self, cmd, n):
42 cmd: string, command to execute
46 self.shell.Execute(cmd)
48 def AdbShell(self, cmd, n):
52 cmd: string, command to execute
56 self.dut.adb.shell(cmd)
58 def VtsShellList(self, cmd, n):
62 cmd: string, command to execute
65 self.shell.Execute([cmd] * n)
81 cmd = "/data/local/tmp/zero_testcase"
84 self.AdbShell(cmd, 1)
85 self.VtsShell(cmd, 1)
89 adb_time = self.Measure(self.AdbShell, cmd, repeats)
90 vts_time = self.Measure(self.VtsShell, cmd, repeats)
91 vts_list_time = self.Measure(self.VtsShellList, cmd, repeats)