Home
last modified time | relevance | path

Searched refs:adb_cmd (Results 1 – 7 of 7) sorted by relevance

/external/autotest/client/site_tests/cheets_AppCompatTest/
Dcheets_AppCompatTest.py54 arc.adb_cmd('uninstall com.hcl.actframework')
55 arc.adb_cmd('uninstall com.hcl.actframework.test')
56 arc.adb_cmd('uninstall %s' % self._pkg_name)
95 arc.adb_cmd('push %s /data/local/tmp/com.hcl.actframework' %
100 arc.adb_cmd('push %s '
106 arc.adb_cmd('push %s /sdcard/' % os.path.join(
114 arc.adb_cmd('bugreport > %s' % os.path.join(self.resultsdir,
122 arc.adb_cmd('pull %s %s' % (screenshot, self.resultsdir),
130 arc.adb_cmd('logcat -d > %s' % os.path.join(self.resultsdir,
174 arc.adb_cmd('logcat -G 16M')
[all …]
/external/libcxx/utils/libcxx/android/
Dexecutors.py30 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
/external/autotest/client/common_lib/cros/
Dadb_keepalive.py58 adb_cmd = 'adb %s %s' % (adb_option, cmd)
61 output = utils.system_output(adb_cmd, **kwargs)
65 logging.info('Retrying command %s', adb_cmd)
66 logging.debug('%s: %s', adb_cmd, output)
Darc.py212 def adb_cmd(cmd, **kwargs): function
227 output = adb_cmd('shell %s' % pipes.quote(cmd), **kwargs)
242 return adb_cmd('install -r -t %s %s' % (flags, apk), timeout=60*5)
250 return adb_cmd('uninstall %s' % apk)
260 adb_cmd('reboot', ignore_status=True)
276 adb_cmd('root')
393 adb_cmd('pull %s %s' % (pipes.quote(filename),
411 adb_cmd('push %s %s' % (pipes.quote(tmpfile.name),
/external/autotest/client/cros/multimedia/
Darc_resource.py154 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),
/external/chromium-trace/catapult/devil/devil/android/
Ddevice_errors.py57 adb_cmd = ' '.join(cmd_helper.SingleQuote(arg) for arg in self.args)
58 segments = ['adb %s: failed ' % adb_cmd]
/external/autotest/client/site_tests/graphics_Gralloc/
Dgraphics_Gralloc.py47 arc.adb_cmd('-e push %s %s' % (cros_path, sdcard_path))