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

  /system/extras/tests/bionic/libc/
run-test.sh 27 ADB_CMD=adb
44 ADB_CMD="$optarg"
128 adb_cmd () function
136 echo "$ADB_CMD shell $@"
137 $ADB_CMD shell $@ "&&" echo OK "||" echo KO | tee $ADB_CMD_LOG
139 $ADB_CMD shell $@ "&&" echo OK "||" echo KO > $ADB_CMD_LOG
168 adb_cmd mkdir $DEVICE_TEST_DIR
169 $ADB_CMD push $TESTEXE $DEVICE_TEST_DIR/
175 adb_cmd chmod 0755 $DEVICE_TEST &&
176 adb_cmd $DEVICE_TES
    [all...]
  /external/chromium_org/build/android/
adb_logcat_monitor.py 42 def StartLogcatIfNecessary(device_id, adb_cmd, base_dir):
60 process = subprocess.Popen([adb_cmd, '-s', device_id,
67 def GetAttachedDevices(adb_cmd):
74 adb_cmd: binary to run adb
81 out, err = subprocess.Popen([adb_cmd, 'devices'],
97 def main(base_dir, adb_cmd='adb'):
127 for device_id in GetAttachedDevices(adb_cmd):
129 subprocess.call([adb_cmd, '-s', device_id, 'logcat', '-c'])
134 StartLogcatIfNecessary(device, adb_cmd, base_dir)
  /ndk/
ndk-gdb 69 # If ADB_CMD is not defined, try to find a program named 'adb'
71 ADB_CMD=${ADB_CMD:-$(find_program adb)}
307 echo " --adb=<file> Use specific adb command [$ADB_CMD]"
331 ADB_CMD=$OPTION_ADB
332 log "Using specific adb command: $ADB_CMD"
334 if [ -z "$ADB_CMD" ] ; then
340 log "Using default adb command: $ADB_CMD"
343 ADB_CMD=$(quote_spaces $ADB_CMD)
362 adb_cmd () function
    [all...]
ndk-gdb.py 66 ADB_CMD = None
112 global ADB_CMD, ADB_FLAGS
164 dest='adb_cmd')
208 (found_adb, ADB_CMD) = find_program('adb', [ndk_bin])
230 if args.adb_cmd != None:
231 log('Using specific adb command: %s' % (args.adb_cmd))
232 ADB_CMD = args.adb_cmd
233 if ADB_CMD is None:
237 if not os.path.isfile(ADB_CMD)
356 def adb_cmd(redirect_stderr, args, log_command=False, adb_trace=False, background=False): function
    [all...]
  /build/tools/
adbs 190 adb_cmd = "adb " + ' '.join(sys.argv[1:]) variable
199 stream = os.popen(adb_cmd)
  /external/chromium_org/build/android/pylib/utils/
emulator.py 380 adb_cmd = "adb -s %s %s" % (self.device, 'wait-for-device')
383 run_command.RunCommand(adb_cmd,
391 adb_cmd = "adb -s %s %s" % (self.device, 'kill-server')
392 run_command.RunCommand(adb_cmd)
  /development/testrunner/
adb_interface.py 69 adb_cmd = "adb %s %s" % (self._target_arg, command_string)
70 logger.SilentLog("about to run %s" % adb_cmd)
71 return run_command.RunCommand(adb_cmd, timeout_time=timeout_time,
  /external/chromium_org/third_party/android_testrunner/
adb_interface.py 69 adb_cmd = "adb %s %s" % (self._target_arg, command_string)
70 logger.SilentLog("about to run %s" % adb_cmd)
71 return run_command.RunCommand(adb_cmd, timeout_time=timeout_time,
  /development/testrunner/test_defs/
instrumentation_test.py 137 adb_cmd = adb.PreviewInstrumentationCommand(
142 logger.Log(adb_cmd)
  /external/chromium_org/build/android/pylib/
android_commands.py 514 adb_cmd = [constants.ADB_PATH, 'kill-server']
515 ret = cmd_helper.RunCmd(adb_cmd)
528 adb_cmd = ['taskset', '-c', '0', constants.ADB_PATH, 'start-server']
529 ret = cmd_helper.RunCmd(adb_cmd)
    [all...]

Completed in 305 milliseconds