Searched defs:adb (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/tools/orientationplot/
H A Dorientationplot.py445 # Start adb.
446 print "Starting adb logcat.\n"
448 adb = subprocess.Popen(['adb', 'logcat', '-s', '-v', 'time', 'WindowOrientationListener:V'], variable
450 adbout = NonBlockingStream(adb.stdout)
/frameworks/base/tools/velocityplot/
H A Dvelocityplot.py277 # Start adb.
278 print "Starting adb logcat.\n"
280 adb = subprocess.Popen(['adb', 'logcat', '-s', '-v', 'time', 'Input:*', 'VelocityTracker:*'], variable
282 adbout = NonBlockingStream(adb.stdout)
/frameworks/rs/tests/lldb/tests/harness/
H A Dutil_android.py37 '''Provides some utility methods that interface with Android using adb.'''
41 # The path to the adb binary on the local machine
60 def adb(self, args, async=False, device=True, timeout=None): member in class:UtilAndroid
61 '''Run an adb command (async optional).
64 args: The command (including arguments) to run in adb.
65 async: Boolean to specify whether adb should run the command
68 device should be inserted in the adb command.
80 If adb was synchronously run and the command completed by the
82 error) from adb. Otherwise it returns None.
116 '''Attempt to execute the given adb comman
[all...]
/frameworks/compile/libbcc/gdb_plugin/
H A Dandroid-commands.py99 Uses subprocess to invoke adb.
113 'out', 'host', 'linux-x86', 'bin', 'adb')
152 raise gdb.GdbError("Error starting background adb " + str(largs))
154 raise gdb.GdbError("Unknown error starting background adb " + str(largs))
166 raise gdb.GdbError("Error starting adb " + str(largs))
168 raise gdb.GdbError("Unknown error starting adb " + str(largs))
273 # adb getprop [property]
284 # adb push
288 # adb forward <source> <destination>
297 # adb pul
760 adb = ADB(verbose=be_verbose) variable
[all...]
/frameworks/base/core/tests/overlaytests/
H A Dtestrunner.py35 adb = 'adb' variable
38 argv = shlex.split(adb + " shell '" + cmd + "; echo $?'")
197 argv = shlex.split(adb + ' push %s %s' % (src, self.dest))
374 (returncode, stdout, stderr) = _adb_shell('getprop service.adb.root 0')
380 argv = shlex.split(adb + ' root')
386 argv = shlex.split(adb + ' wait-for-device')
399 argv = shlex.split(adb + ' remount')
402 # adb remount returns 0 even if the operation failed, so check stdout
509 line = line.rstrip() # strip \r from adb outpu
[all...]

Completed in 2387 milliseconds