Home
last modified time | relevance | path

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

/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/r8/tools/
Dapk-masseur.py112 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)
/external/autotest/client/common_lib/cros/
Darc.py139 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/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/libmojo/third_party/catapult/devil/devil/android/
Ddevice_errors.py33 adb_cmd = ' '.join(cmd_helper.SingleQuote(arg) for arg in self.args)
34 message = ['adb %s: failed ' % adb_cmd]
/external/chromium-trace/catapult/devil/devil/android/
Ddevice_errors.py57 adb_cmd = ' '.join(cmd_helper.SingleQuote(arg) for arg in self.args)
58 message = ['adb %s: failed ' % adb_cmd]
/external/autotest/client/site_tests/graphics_Gralloc/
Dgraphics_Gralloc.py43 arc.adb_cmd('-e push %s %s' % (cmd, _SDCARD_EXEC))