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

  /build/make/tools/
adbs 29 adb_cmd = "adb " + ' '.join(sys.argv[1:]) variable
35 stream = os.popen(adb_cmd)
  /external/libcxx/utils/libcxx/android/
executors.py 30 adb_cmd = ['adb', 'shell']
32 adb_cmd.extend(['-s', self.serial])
45 adb_cmd.append(remote_cmd)
51 out, err, exit_code = self.local_run(adb_cmd)
65 return adb_cmd, out, err, exit_code
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/android/
executors.py 30 adb_cmd = ['adb', 'shell']
32 adb_cmd.extend(['-s', self.serial])
45 adb_cmd.append(remote_cmd)
51 out, err, exit_code = self.local_run(adb_cmd)
65 return adb_cmd, out, err, exit_code
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/libcxx/android/
executors.py 31 adb_cmd = ['adb', 'shell']
33 adb_cmd.extend(['-s', self.serial])
46 adb_cmd.append(remote_cmd)
52 out, err, exit_code = self.local_run(adb_cmd)
66 return adb_cmd, out, err, exit_code
  /tools/test/connectivity/acts/framework/acts/controllers/
adb.py 84 adb_cmd = [adb_path]
86 adb_cmd.append("-s %s" % serial)
103 adb_cmd.append("-P %d" % local_port)
104 self.adb_str = " ".join(adb_cmd)
  /development/python-packages/adb/
device.py 263 self.adb_cmd = [adb_path]
266 self.adb_cmd.extend(['-s', serial])
268 self.adb_cmd.extend(['-p', product])
275 self._linesep = subprocess.check_output(self.adb_cmd +
289 return version(self.adb_cmd) >= 35 and 'shell_v2' in self.features
292 command = self.adb_cmd + ['shell'] + user_cmd
326 logging.info(' '.join(self.adb_cmd + cmd))
328 self.adb_cmd + cmd, stderr=subprocess.STDOUT)
388 command = self.adb_cmd + ['shell'] + cmd
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/
adb_install_cert.py 78 adb_cmd = self._get_adb_cmd('shell', '(%s); echo %s$?' % (
80 process = subprocess.Popen(adb_cmd, stdout=subprocess.PIPE)
84 cmd=adb_cmd, returncode=process.returncode, output=adb_stdout)
89 RETURN_CODE_PREFIX, subprocess.list2cmdline(adb_cmd))
  /external/autotest/client/common_lib/cros/
arc.py 109 def adb_cmd(cmd, **kwargs): function
123 output = adb_cmd('shell %s' % pipes.quote(cmd), **kwargs)
135 return adb_cmd('install -r %s' % apk)
143 return adb_cmd('uninstall %s' % apk)
149 return adb_cmd('reboot', ignore_status=True)
154 adb_cmd('root')
241 adb_cmd('pull %s %s' % (pipes.quote(filename), pipes.quote(tmpfile.name)))
258 adb_cmd('push %s %s' % (pipes.quote(tmpfile.name), pipes.quote(filename)))
  /external/libmojo/third_party/catapult/devil/devil/android/
device_errors.py 33 adb_cmd = ' '.join(cmd_helper.SingleQuote(arg) for arg in self.args)
34 message = ['adb %s: failed ' % adb_cmd]
  /external/autotest/client/site_tests/graphics_Gralloc/
graphics_Gralloc.py 38 arc.adb_cmd('-e push %s %s' % (cmd, _SDCARD_EXEC))
  /external/autotest/client/cros/multimedia/
arc_resource.py 154 arc.adb_cmd('pull %s %s' % (pipes.quote(self._MICROPHONE_RECORD_PATH),
194 arc.adb_cmd('push %s %s' % (pipes.quote(file_path),
302 arc.adb_cmd('push %s %s' % (pipes.quote(file_path),
  /art/tools/common/
common.py 440 adb_cmd = ['adb']
442 adb_cmd += ['-s', self._specific_device]
443 logcat_cmd = adb_cmd + ['logcat', '-v', 'brief', '-s', '-b', 'main',
451 cmd = adb_cmd + ['shell', device_cmd]
  /tools/test/connectivity/acts/framework/tests/
acts_android_device_test.py 352 adb_cmd = 'adb -s %s logcat -v threadtime -b all >> %s'
353 start_proc_mock.assert_called_with(adb_cmd % (ad.serial,
398 adb_cmd = 'adb -s %s logcat -v threadtime -b radio >> %s'
399 start_proc_mock.assert_called_with(adb_cmd % (ad.serial,
  /external/chromium-trace/catapult/devil/devil/android/
device_errors.py 41 adb_cmd = ' '.join(cmd_helper.SingleQuote(arg) for arg in self.args)
42 message = ['adb %s: failed ' % 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)
  /system/core/adb/
test_device.py 319 self.device.adb_cmd + ['shell'] + shell_args,
388 test_cmd = self.device.adb_cmd + ['shell'] + args + ['[ -t 0 ]']
476 self.device.adb_cmd + shlex.split('shell echo $$; sleep 60'),
506 proc = subprocess.Popen(self.device.adb_cmd + ['shell', 'cat'],
    [all...]

Completed in 876 milliseconds