HomeSort by relevance Sort by last modified time
    Searched refs:adb_command (Results 1 - 10 of 10) sorted by null

  /external/chromium-trace/catapult/systrace/systrace/
util.py 33 def add_adb_serial(adb_command, device_serial):
42 adb_command: ADB command list.
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):
70 adb_output = subprocess.check_output(adb_command, stderr=subprocess.STDOUT,
75 % ' '.join(adb_command))
    [all...]
  /system/core/adb/
adb_client.h 35 bool adb_command(const std::string& service);
adb_client.cpp 270 bool adb_command(const std::string& service) { function
commandline.cpp     [all...]
  /system/extras/pagecache/
pagecache.py 175 def add_adb_serial(adb_command, device_serial):
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))
  /development/tools/labpretest/
labpretest.sh 255 adb_command() function
419 adb_command wait-for-device
520 adb_command root
533 adb_command root
535 adb_command shell setprop ro.test_harness 1
563 adb_command shell svc power stayon true
  /external/lisa/libs/utils/android/
system.py 20 from devlib.utils.android import adb_command
542 adb_command(target.adb_name,
559 adb_command(target.adb_name,
573 adb_command(target.adb_name, 'logcat * -d > {}'.format(out_file))
664 adb_command(target.adb_name, ADB_INSTALL_CMD.format(apk_path))
  /external/devlib/devlib/utils/
android.py 188 output = adb_command(self.device,
204 output = adb_command(self.device, command, timeout=self.timeout, adb_server=self.adb_server)
233 return adb_command(self.device, command, timeout=timeout, adb_server=self.adb_server)
242 output = adb_command(self.device, command, timeout=timeout, adb_server=self.adb_server)
245 adb_command(self.device, command, timeout=timeout, adb_server=self.adb_server)
248 return adb_command(self.device, command, timeout=timeout, adb_server=self.adb_server)
296 adb_command(None, 'start-server', adb_server=adb_server)
304 output = adb_command(None, "devices", adb_server=adb_server).splitlines() # pylint: disable=E1103
437 output = adb_command(None, 'devices',adb_server=adb_server)
454 def adb_command(device, command, timeout=None,adb_server=None) function
    [all...]
  /art/test/testrunner/
testrunner.py     [all...]
  /external/devlib/devlib/
target.py 17 from devlib.utils.android import AdbConnection, AndroidProperties, LogcatMonitor, adb_command, adb_disconnect
    [all...]

Completed in 3345 milliseconds