Searched refs:adb_cmd (Results 1 – 6 of 6) sorted by relevance
/external/libcxx/utils/libcxx/android/ |
D | 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
|
/external/autotest/client/common_lib/cros/ |
D | adb_keepalive.py | 58 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)
|
D | arc.py | 242 def adb_cmd(cmd, **kwargs): function 257 output = adb_cmd('shell %s' % pipes.quote(cmd), **kwargs) 275 return adb_cmd('install -r -t %s %s' % (flags, apk), 285 return adb_cmd('uninstall %s' % apk) 295 adb_cmd('reboot', ignore_status=True) 311 adb_cmd('root') 384 adb_cmd('pull %s %s' % (pipes.quote(filename), 402 adb_cmd('push %s %s' % (pipes.quote(tmpfile.name),
|
/external/chromium-trace/catapult/devil/devil/android/ |
D | device_errors.py | 64 adb_cmd = ' '.join(cmd_helper.SingleQuote(arg) for arg in self.args) 65 segments = ['adb %s: failed ' % adb_cmd] 141 adb_cmd = ' '.join(cmd_helper.SingleQuote(arg) for arg in args) 148 self).__init__(message='adb %s: %s' % (adb_cmd, desc))
|
/external/autotest/client/cros/multimedia/ |
D | 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),
|
/external/chromium-trace/catapult/devil/devil/android/sdk/ |
D | adb_wrapper.py | 317 adb_cmd = cls._BuildAdbCmd(args, device_serial, cpu_affinity=cpu_affinity) 318 status, output = cmd_helper.GetCmdStatusAndOutputWithTimeout(adb_cmd, 327 logger.error('Timeout on adb command: %r', adb_cmd)
|