Searched defs:adb (Results 1 - 4 of 4) 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/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.py33 adb = 'adb' variable
36 argv = shlex.split(adb + " shell '" + cmd + "; echo $?'")
192 argv = shlex.split(adb + ' push %s %s' % (src, self.dest))
355 (returncode, stdout, stderr) = _adb_shell('getprop service.adb.root 0')
361 argv = shlex.split(adb + ' root')
367 argv = shlex.split(adb + ' wait-for-device')
380 argv = shlex.split(adb + ' remount')
383 # adb remount returns 0 even if the operation failed, so check stdout
473 line = line.rstrip() # strip \r from adb outpu
[all...]

Completed in 637 milliseconds