Home
last modified time | relevance | path

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

/aosp12/system/extras/pagecache/
H A Dpagecache.py175 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 Drun-libcore-tests.py208 adb_command = 'adb shell cat /sys/devices/system/cpu/present'
209 with subprocess.Popen(adb_command.split(),
/aosp12/packages/modules/adb/client/
H A Dadb_client.h49 bool adb_command(const std::string& service);
H A Dadb_client.cpp369 bool adb_command(const std::string& service) { in adb_command() function
H A Dcommandline.cpp1100 return adb_command(cmd); in wait_for_device()
/aosp12/art/test/testrunner/
H A Dtestrunner.py1059 adb_command = 'adb shell cat /sys/devices/system/cpu/present'
1060 cpu_info_proc = subprocess.Popen(adb_command.split(), stdout=subprocess.PIPE)