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

  /external/vogar/bin/
vogar 15 adb_path=`which adb`
16 if [ -n "${adb_path}" ]; then
17 android_tools_dir=`dirname ${adb_path}`
  /development/python-packages/adb/
device.py 50 def get_devices(adb_path='adb'):
52 subprocess.check_call([adb_path, 'start-server'], stdout=devnull,
55 subprocess.check_output([adb_path, 'devices']).decode('utf-8'))
71 def _get_unique_device(product=None, adb_path='adb'):
72 devices = get_devices(adb_path=adb_path)
75 return AndroidDevice(devices[0], product, adb_path)
78 def _get_device_by_serial(serial, product=None, adb_path='adb'):
79 for device in get_devices(adb_path=adb_path)
    [all...]
  /system/extras/simpleperf/scripts/
run_simpleperf_on_device.py 34 sys.exit(subprocess.call([adb.adb_path, 'shell', shell_cmd]))
utils.py 216 adb_path = find_tool_path('adb')
217 if not adb_path:
219 self.adb_path = adb_path
228 adb_args = [self.adb_path] + adb_args
app_profiler.py 353 adb_args = [self.adb.adb_path, 'shell'] + args
  /development/python-packages/gdbrunner/
__init__.py 33 "--adb", dest="adb_path",
54 adb_path = result.adb_path or "adb"
58 subprocess.check_output([adb_path, "version"],
62 if not result.adb_path:
64 sys.exit(msg.format(adb_path))
68 result.device = adb.get_device(adb_path=adb_path)
70 result.device = adb.get_usb_device(adb_path=adb_path)
    [all...]
  /external/chromium-trace/catapult/devil/devil/android/tools/
script_common.py 22 if args.adb_path:
25 'adb', devil_env.GetPlatform(), args.adb_path))
unlock_bootloader.py 129 if args.adb_path:
132 'adb', devil_env.GetPlatform(), args.adb_path))
device_monitor.py 219 os.getpid(), args.adb_path, args.blacklist_file)
  /development/tools/privapp_permissions/
privapp_permissions.py 138 def __init__(self, adb_path=None, aapt_path=None, use_device=None,
140 self.adb = Resources._resolve_adb(adb_path)
166 def _resolve_adb(adb_path):
170 adb_path: The argument passed in for adb. Can be None.
176 if adb_path:
177 if os.path.isfile(adb_path):
178 adb = adb_path
181 '"%s" exists.' % adb_path)
364 metavar='<ADB_PATH',
570 adb_path=args.adb
    [all...]
  /external/chromium-trace/catapult/systrace/systrace/
run_systrace.py 121 adb_path = find_adb()
122 if adb_path is None:
131 'local_paths': [os.path.abspath(adb_path)]
  /tools/test/connectivity/acts/framework/acts/controllers/
adb.py 84 adb_path = self._exec_cmd("which adb")
85 adb_cmd = [adb_path]
94 ssh_connection.send_file(adb_path, temp_dir)
  /external/libmojo/third_party/catapult/devil/devil/android/tools/
device_recovery.py 176 if args.adb_path:
181 'local_paths': [args.adb_path]
device_status.py 267 if args.adb_path:
272 'local_paths': [args.adb_path]
  /frameworks/rs/tests/lldb/
run_tests.py 181 self.adb_path = _choice(args.adb_path, config.adb_path)
242 self.android = UtilAndroid(self.adb_path,
511 state.adb_path,
  /frameworks/rs/tests/lldb/tests/harness/
util_android.py 40 def __init__(self, adb_path, lldb_server_path_device, device):
42 self._path_adb = adb_path
  /frameworks/rs/tests/lldb/tests/
run_test.py 278 ('adb_path', str),
305 android = harness.UtilAndroid(args.adb_path,
  /frameworks/compile/libbcc/gdb_plugin/
android-commands.py 112 self.adb_path = os.path.join(self.android_build_top,
139 largs.insert(0, self.adb_path)

Completed in 276 milliseconds