Searched refs:run_output (Results 1 – 25 of 27) sorted by relevance
12
44 host.run_output('bootctl get-current-slot').strip())48 host.run_output('bootctl get-number-slots').strip())84 for device in host.run_output(cmd).splitlines():109 host.run_output('blockdev --getbsz %s' % device).strip())111 host.run_output('blockdev --getsize64 %s' % device).strip())173 host.run_output('bootctl get-current-slot').strip())
17 cpuidle_driver = host.run_output('cat /sys/devices/system/cpu/cpuidle/current_driver')23 …cpufreq_governors = host.run_output('cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_go…29 wakelock_ls = host.run_output('ls /sys/power/wake_lock')32 pm_states = host.run_output('cat /sys/power/state')
34 self.num_slots = int(self.dut.run_output('bootctl get-number-slots'))36 self.suffix_a = self.dut.run_output('bootctl get-suffix 0')37 self.suffix_b = self.dut.run_output('bootctl get-suffix 1')42 self.boot_a_size = int(self.dut.run_output(44 self.boot_b_size = int(self.dut.run_output(93 return int(self.dut.run_output('bootctl get-current-slot'))
29 result = host.run_output(39 result = host.run_output('cat /sys/class/switch/h2w/name',
37 tokens = self.host.run_output('ls -LZ %s' % path).split()47 hardware = self.host.run_output('getprop ro.hardware')
76 procrank_output = host.run_output(PROCRANK_CMD).splitlines()124 librank_output = host.run_output(LIBRANK_CMD).splitlines()
33 platform = host.run_output('mosys platform name')61 output = host.run_output('cat %s' % ERROR_FILE)
28 result = host.run_output('uname -r').strip()
24 return host.run_output('getprop %s' % property_name).strip()
29 df_output = host.run_output('df %s' % path).splitlines()
37 result = host.run_output(
35 meminfo_output = host.run_output('cat /proc/meminfo').splitlines()
36 return int(host.run_output(background_cmd).strip())
22 self.assertRaises(NotImplementedError, host.run_output, "fake command")
122 def run_output(self, command, *args, **dargs): member in Host
50 logs = self.host.run_output(
90 for line in self.host.run_output(119 gtest_suites_path = self.host.run_output(list_cmd).splitlines()
55 logs = self.host.run_output(
80 platform = host.run_output('mosys platform name')
100 ifconfig_output = host.run_output('ifconfig').splitlines()
89 self.client.run_output(cmd).splitlines()]
422 lambda: self.run_output(cmd, ignore_status=True),437 return self.run_output('getprop %s' % BOARD_FILE)1010 file_info = self.run_output('ls -ld %s' % dest)1127 return self.run_output('getprop %s' % RELEASE_FILE)1144 tmp_dir = self.run_output('mktemp -d -p %s' % parent)1161 if self.run_output('getprop ro.product.brand') == 'Brillo':
485 hwid = host.run_output('crossystem hwid').strip()
69 for kv in MOSYS_OUTPUT_RE.finditer(client.run_output(cmd)):