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

  /frameworks/base/tests/DumpRenderTree/assets/
run_reliability_tests.py 28 def DumpRenderTreeFinished(adb_cmd):
32 adb_cmd: adb command string
39 shell_cmd_str = adb_cmd + " shell cat " + TEST_STATUS_FILE
46 def RemoveDeviceFile(adb_cmd, file_name):
47 shell_cmd_str = adb_cmd + " shell rm " + file_name
53 def Bugreport(url, bugreport_dir, adb_cmd):
63 cmd = "%s bugreport >> %s" % (adb_cmd, bugreport_filename)
148 adb_cmd = "adb "
150 adb_cmd += options.adb_options + " "
153 test_cmd = adb_cmd + " push \"" + path + "\" \"" + TEST_LIST_FILE + "\"
    [all...]
run_layout_tests.py 53 def DumpRenderTreeFinished(adb_cmd):
57 output: adb_cmd string
61 shell_cmd_str = adb_cmd + " shell cat /sdcard/webkit/running_test.txt"
159 adb_cmd = "adb ";
161 adb_cmd += options.adb_options
166 generate_test_list_cmd_str = adb_cmd + " shell am instrument -e class com.android.dumprendertree.LayoutTestsAutoTest#generateTestList -e path \"" + path + "\" -w com.android.dumprendertree/.LayoutTestsAutoRunner"
185 run_layout_test_cmd_prefix = adb_cmd + " shell am instrument"
206 while not DumpRenderTreeFinished(adb_cmd):
210 shell_cmd_str = adb_cmd + " shell cat /sdcard/webkit/running_test.txt"
252 shell_cmd_str = adb_cmd + " pull " + file + " " + results_di
    [all...]
run_page_cycler.py 46 adb_cmd = "adb ";
48 adb_cmd += options.adb_options
61 run_load_test_cmd_prefix = adb_cmd + " shell am instrument"
117 shell_cmd_str = adb_cmd + " pull " + result_file + " " + results_dir
  /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...]
  /frameworks/base/tests/DumpRenderTree2/assets/
run_layout_tests.py 36 adb_cmd = "adb"
38 adb_cmd += " -s " + options.serial
39 cmd = adb_cmd + " shell am instrument "
62 cmd += adb_cmd + " pull " + RESULTS_ABSOLUTE_PATH + SUMMARY_TXT + " " + summary_txt_tmp_path
68 cmd += adb_cmd + " pull " + RESULTS_ABSOLUTE_PATH + DETAILS_HTML + " " + details_html_tmp_path
  /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)}
288 echo " --adb=<file> Use specific adb command [$ADB_CMD]"
312 ADB_CMD=$OPTION_ADB
313 log "Using specific adb command: $ADB_CMD"
315 if [ -z "$ADB_CMD" ] ; then
321 log "Using default adb command: $ADB_CMD"
324 ADB_CMD=$(quote_spaces $ADB_CMD)
340 adb_cmd () function
    [all...]
ndk-gdb.py 67 ADB_CMD = None
103 global PYTHON_CMD, GNUMAKE_CMD, ADB_CMD, ADB_FLAGS
151 dest='adb_cmd')
179 (found_adb, ADB_CMD) = find_program('adb', [ndk_bin])
200 if args.adb_cmd != None:
201 log('Using specific adb command: %s' % (args.adb_cmd))
202 ADB_CMD = args.adb_cmd
203 if ADB_CMD is None:
207 if not os.path.isfile(ADB_CMD)
294 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)
  /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,
  /development/testrunner/test_defs/
instrumentation_test.py 137 adb_cmd = adb.PreviewInstrumentationCommand(
142 logger.Log(adb_cmd)

Completed in 594 milliseconds