/external/skqp/infra/bots/recipe_modules/flavor/ |
D | chromebook.py | 86 def copy_file_to_device(self, host_path, device_path): argument 89 self.m.python.inline(str('scp %s %s' % (host_path, device_path)), 96 """, args=[host_path, device_path], infra_step=True) 110 def copy_directory_contents_to_device(self, host_path, device_path): argument 111 self._copy_dir(host_path, self._prefix_device_path(device_path)) 113 def copy_directory_contents_to_host(self, device_path, host_path): argument 114 self._copy_dir(self._prefix_device_path(device_path), host_path)
|
D | api.py | 95 def copy_file_to_device(self, host_path, device_path): argument 96 return self._f.copy_file_to_device(host_path, device_path) 133 host_path, device_path): argument 148 host_path, device_path)
|
D | default.py | 122 def copy_file_to_device(self, host_path, device_path): argument 126 if str(host_path) != str(device_path): 130 str(host_path), str(device_path)))
|
/external/skia/infra/bots/recipe_modules/flavor/ |
D | ssh.py | 49 host_path = self.host_dirs.bin_dir.join(self.app_name) 51 self.copy_file_to_device(host_path, device_path) 72 def copy_file_to_device(self, host_path, device_path): argument 74 self._run('scp %s %s' % (host_path, device_path), 75 ['scp', host_path, device_path], infra_step=True)
|
D | chromebook.py | 52 def copy_directory_contents_to_device(self, host_path, device_path): argument 53 self._copy_dir(host_path, self.scp_device_path(device_path)) 55 def copy_directory_contents_to_host(self, device_path, host_path): argument 56 self._copy_dir(self.scp_device_path(device_path), host_path)
|
D | api.py | 97 def copy_file_to_device(self, host_path, device_path): argument 98 return self._f.copy_file_to_device(host_path, device_path) 139 host_path, device_path): argument 154 host_path, device_path)
|
D | default.py | 79 def copy_file_to_device(self, host_path, device_path): argument 83 if str(host_path) != str(device_path): 87 str(host_path), str(device_path)))
|
/external/chromium-trace/catapult/devil/devil/android/tools/ |
D | webview_app.py | 137 host_path = _RebasePath(temp_dir, user_path) 139 device.PullFile(user_path, host_path, timeout=_WEBVIEW_INSTALL_TIMEOUT) 140 host_paths.append(host_path) 145 for host_path in reversed(host_paths): 147 host_path, reinstall=True, timeout=_WEBVIEW_INSTALL_TIMEOUT)
|
/external/chromium-trace/catapult/devil/devil/android/ |
D | device_utils.py | 380 def _IterPushableComponents(host_path, device_path): argument 407 if os.path.isfile(host_path): 409 os.path.realpath(host_path), device_path, not os.path.islink(host_path)) 412 for child in os.listdir(host_path): 415 os.path.join(host_path, child), posixpath.join( 420 os.path.realpath(host_path), device_path, 421 not os.path.islink(host_path)) 1978 host_path = h.rstrip('/') 1990 if os.path.isdir(host_path): 1992 for root, _, filenames in os.walk(host_path): [all …]
|
/external/chromium-trace/catapult/devil/devil/utils/ |
D | mock_calls_test.py | 25 def Push(self, host_path, device_path): argument 26 logging.debug('(device %s) pushing %r to %r', self, host_path, device_path)
|
/external/autotest/site_utils/lxc/ |
D | container.py | 563 def copy(self, host_path, container_path): argument 571 self._do_copy(src=host_path, dst=dst_path)
|
D | container_unittest.py | 331 def verifyBindMount(self, container, container_path, host_path): argument 341 host_inode = utils.run('ls -id %s' % host_path).stdout.split()[0]
|
/external/chromium-trace/catapult/devil/docs/ |
D | device_utils.md | 803 host_path: A string containing the absolute path of the destination on 825 host_device_tuples: A list of (host_path, device_path) tuples, where 826 |host_path| is an absolute path of a file or directory on the host 1241 host_path: A string containing the path on the host to save the
|