Searched refs:adb_command (Results 1 – 6 of 6) sorted by relevance
/aosp12/system/extras/pagecache/ |
H A D | pagecache.py | 175 def add_adb_serial(adb_command, device_serial): argument 177 adb_command.insert(1, device_serial) 178 adb_command.insert(1, '-s') 182 adb_command = ['adb', 'shell', ' '.join(shell_args)] 183 AdbUtils.add_adb_serial(adb_command, device_serial) 184 return adb_command 198 adb_command = AdbUtils.construct_adb_shell_command(shell_args, device_serial) 203 adb_output = subprocess.check_output(adb_command, stderr=subprocess.STDOUT, 208 % ' '.join(adb_command))
|
/aosp12/art/tools/ |
H A D | run-libcore-tests.py | 208 adb_command = 'adb shell cat /sys/devices/system/cpu/present' 209 with subprocess.Popen(adb_command.split(),
|
/aosp12/packages/modules/adb/client/ |
H A D | adb_client.h | 49 bool adb_command(const std::string& service);
|
H A D | adb_client.cpp | 369 bool adb_command(const std::string& service) { in adb_command() function
|
H A D | commandline.cpp | 1100 return adb_command(cmd); in wait_for_device()
|
/aosp12/art/test/testrunner/ |
H A D | testrunner.py | 1059 adb_command = 'adb shell cat /sys/devices/system/cpu/present' 1060 cpu_info_proc = subprocess.Popen(adb_command.split(), stdout=subprocess.PIPE)
|