Home
last modified time | relevance | path

Searched refs:host_path (Results 1 – 10 of 10) sorted by relevance

/third_party/flutter/skia/infra/bots/recipe_modules/flavor/
Dwin_ssh.py73 host_path = tmp.join(ntpath.basename(path))
75 ok = self._run('scp %s %s' % (device_path, host_path),
76 cmd=['scp', device_path, host_path],
81 return self.m.run.readfile(host_path)
90 def copy_directory_contents_to_device(self, host_path, device_path): argument
97 with self.m.step.nest('copy %s to device' % host_path):
103 self.m.path.basename(host_path))
104 self._copy_dir(host_path, self.scp_device_path(tmpdir))
109 def copy_directory_contents_to_host(self, device_path, host_path): argument
112 self._copy_dir(src, host_path)
Dssh.py67 def copy_file_to_device(self, host_path, device_path): argument
69 self._run('scp %s %s' % (host_path, device_path),
70 ['scp', host_path, device_path], infra_step=True)
80 host_path = self.host_dirs.bin_dir.join(cmd[0])
82 self.copy_file_to_device(host_path, cmd[0])
Dchromebook.py51 def copy_directory_contents_to_device(self, host_path, device_path): argument
52 self._copy_dir(host_path, self.scp_device_path(device_path))
54 def copy_directory_contents_to_host(self, device_path, host_path): argument
55 self._copy_dir(self.scp_device_path(device_path), host_path)
Dapi.py103 def copy_file_to_device(self, host_path, device_path): argument
104 return self._f.copy_file_to_device(host_path, device_path)
143 host_path, device_path): argument
158 host_path, device_path)
Ddefault.py129 def copy_file_to_device(self, host_path, device_path): argument
133 if str(host_path) != str(device_path):
137 str(host_path), str(device_path)))
/third_party/skia/infra/bots/recipe_modules/flavor/
Dssh.py49 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)
Dchromebook.py52 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)
Dapi.py93 def copy_file_to_device(self, host_path, device_path): argument
94 return self._f.copy_file_to_device(host_path, device_path)
135 host_path, device_path): argument
150 host_path, device_path)
Ddefault.py79 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)))
/third_party/node/deps/uvwasi/src/
Dpath_resolver.c374 char* host_path; in uvwasi__resolve_path() local
387 host_path = NULL; in uvwasi__resolve_path()
412 uvwasi__free(uvwasi, host_path); in uvwasi__resolve_path()
417 &host_path, in uvwasi__resolve_path()
423 r = uv_fs_readlink(NULL, &req, host_path, NULL); in uvwasi__resolve_path()
431 r = uv_fs_stat(NULL, &req, host_path, NULL); in uvwasi__resolve_path()
479 *resolved_path = host_path; in uvwasi__resolve_path()
482 uvwasi__free(uvwasi, host_path); in uvwasi__resolve_path()