Home
last modified time | relevance | path

Searched refs:adb_command (Results 1 – 5 of 5) sorted by relevance

/external/chromium-trace/catapult/systrace/systrace/
Dutil.py33 def add_adb_serial(adb_command, device_serial): argument
49 adb_command.insert(1, device_serial)
50 adb_command.insert(1, '-s')
61 adb_command = ['adb', 'shell', ' '.join(shell_args)]
62 add_adb_serial(adb_command, device_serial)
63 return adb_command
66 def run_adb_command(adb_command): argument
70 adb_output = subprocess.check_output(adb_command, stderr=subprocess.STDOUT,
75 % ' '.join(adb_command))
99 adb_command = construct_adb_shell_command(shell_args, device_serial)
[all …]
/external/devlib/devlib/utils/
Dandroid.py165 output = adb_command(self.device,
181 output = adb_command(self.device, command, timeout=self.timeout)
209 return adb_command(self.device, command, timeout=timeout)
218 output = adb_command(self.device, command, timeout=timeout)
221 adb_command(self.device, command, timeout=timeout)
224 return adb_command(self.device, command, timeout=timeout)
276 output = adb_command(None, "devices").splitlines() # pylint: disable=E1103
405 output = adb_command(None, 'devices')
414 def adb_command(device, command, timeout=None): function
/external/lisa/libs/utils/android/
Dsystem.py20 from devlib.utils.android import adb_command
438 adb_command(target.adb_name,
455 adb_command(target.adb_name,
469 adb_command(target.adb_name, 'logcat * -d > {}'.format(out_file))
/external/devlib/devlib/
Dtarget.py17 from devlib.utils.android import AdbConnection, AndroidProperties, adb_command, adb_disconnect
1057 …return adb_command(self.adb_name, "install {} '{}'".format(' '.join(flags), filepath), timeout=tim…
1075 adb_command(self.adb_name, "uninstall {}".format(package), timeout=30)
1086 adb_command(self.adb_name, command, timeout=timeout)
1089 adb_command(self.adb_name, 'logcat -c', timeout=30)
1092 adb_command(self.adb_name, 'reboot-bootloader', timeout)
1098 adb_command(self.adb_name, 'root', timeout=30)
1101 adb_command(self.adb_name, 'unroot', timeout=30)
/external/lisa/ipynb/examples/android/workloads/
DAndroid_Recents_Fling.ipynb74 "from devlib.utils.android import adb_command\n",
399 …" adb_command(target.adb_name, 'shell dumpsys gfxinfo com.android.systemui > {}'.format(framest…