HomeSort by relevance Sort by last modified time
    Searched refs:adb_cmd (Results 1 - 18 of 18) 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
  /external/r8/tools/
apk-masseur.py 112 adb_cmd = ['adb']
114 adb_cmd.extend(
117 adb_cmd.extend(['install', '-t', '-r', '-d', options.out]);
118 utils.PrintCmd(adb_cmd)
119 subprocess.check_call(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
  /cts/hostsidetests/theme/
android_device.py 35 adb_cmd = "adb -s %s %s" % (self._serial, cmd)
36 print(adb_cmd)
38 adb_process = subprocess.Popen(args=adb_cmd.split(), bufsize=-1, stderr=PIPE, stdout=PIPE)
  /tools/test/connectivity/acts/framework/acts/controllers/
adb.py 87 adb_cmd = [adb_path]
89 adb_cmd.append("-s %s" % serial)
106 adb_cmd.append("-P %d" % local_port)
107 self.adb_str = " ".join(adb_cmd)
  /external/autotest/client/common_lib/cros/
arc.py 139 def adb_cmd(cmd, **kwargs): function
153 output = adb_cmd('shell %s' % pipes.quote(cmd), **kwargs)
165 return adb_cmd('install -r %s' % apk)
173 return adb_cmd('uninstall %s' % apk)
179 return adb_cmd('reboot', ignore_status=True)
184 adb_cmd('root')
281 adb_cmd('pull %s %s' % (pipes.quote(filename),
299 adb_cmd('push %s %s' % (pipes.quote(tmpfile.name),
  /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 43 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 354 adb_cmd = 'adb -s %s logcat -v threadtime -b all >> %s'
355 start_proc_mock.assert_called_with(adb_cmd % (ad.serial,
401 adb_cmd = 'adb -s %s logcat -v threadtime -b radio >> %s'
402 start_proc_mock.assert_called_with(adb_cmd % (ad.serial,
  /external/chromium-trace/catapult/devil/devil/android/
device_errors.py 57 adb_cmd = ' '.join(cmd_helper.SingleQuote(arg) for arg in self.args)
58 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,
  /system/core/adb/
test_device.py 319 self.device.adb_cmd + ['shell'] + shell_args,
395 test_cmd = self.device.adb_cmd + ['shell'] + args + ['[ -t 0 ]']
483 self.device.adb_cmd + shlex.split('shell echo $$; sleep 60'),
513 proc = subprocess.Popen(self.device.adb_cmd + ['shell', 'cat'],
    [all...]
  /development/testrunner/test_defs/
instrumentation_test.py 137 adb_cmd = adb.PreviewInstrumentationCommand(
142 logger.Log(adb_cmd)

Completed in 1137 milliseconds