OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:adb_path
(Results
1 - 5
of
5
) 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,
54
out = subprocess.check_output([
adb_path
, 'devices']).splitlines()
70
def _get_unique_device(product=None,
adb_path
='adb'):
71
devices = get_devices(
adb_path
=
adb_path
)
74
return AndroidDevice(devices[0], product,
adb_path
)
77
def _get_device_by_serial(serial, product=None,
adb_path
='adb'):
78
for device in get_devices(
adb_path
=
adb_path
)
[
all
...]
/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/telemetry/telemetry/internal/platform/
android_device.py
141
adb_path
= adb_wrapper.AdbWrapper.GetAdbPath()
145
if os.path.isabs(
adb_path
) and not os.path.exists(
adb_path
):
171
adb_path
= adb_wrapper.AdbWrapper.GetAdbPath()
173
[os.path.dirname(
adb_path
), os.environ['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 511 milliseconds