/external/autotest/site_utils/lxc/ |
D | shared_host_dir_unittest.py | 39 host_dir = lxc.SharedHostDir(self.shared_host_path) 42 self.assertEqual(os.path.realpath(host_dir.path), 47 host_dir.cleanup() 60 host_dir = lxc.SharedHostDir(self.shared_host_path) 61 host_dir.cleanup() 70 host_dir = lxc.SharedHostDir(self.shared_host_path) 71 tempfile.NamedTemporaryFile(dir=host_dir.path) 76 host_dir.cleanup() 99 host_dir = lxc.SharedHostDir(self.shared_host_path) 108 host_dir.cleanup(timeout=1) [all …]
|
D | unittest_cleanup.py | 22 for host_dir in os.listdir(TEST_HOST_PATH): 23 host_dir = os.path.realpath(os.path.join(TEST_HOST_PATH, host_dir)) 25 utils.run('sudo umount %s' % host_dir) 28 utils.run('sudo rm -r %s' % host_dir)
|
D | utils.py | 199 def from_existing(cls, host_dir, mount_point): argument 209 spec = (host_dir, os.path.relpath(mount_point, host_dir))
|
/external/skia/infra/bots/recipe_modules/flavor/ |
D | default.py | 55 def copy_directory_contents_to_device(self, host_dir, device_dir): argument 59 if str(host_dir) != str(device_dir): 63 str(host_dir), str(device_dir))) 65 def copy_directory_contents_to_host(self, device_dir, host_dir): argument 69 if str(host_dir) != str(device_dir): 73 str(host_dir), str(device_dir)))
|
D | docker.py | 33 for (docker_dir, host_dir) in [ 37 if path.startswith(host_dir): 38 return docker_dir + path[len(host_dir):]
|
D | api.py | 97 def copy_directory_contents_to_device(self, host_dir, device_dir): argument 98 return self._f.copy_directory_contents_to_device(host_dir, device_dir) 100 def copy_directory_contents_to_host(self, device_dir, host_dir): argument 101 return self._f.copy_directory_contents_to_host(device_dir, host_dir)
|
/external/skqp/infra/bots/recipe_modules/flavor/ |
D | default.py | 102 def copy_directory_contents_to_device(self, host_dir, device_dir): argument 106 if str(host_dir) != str(device_dir): 110 str(host_dir), str(device_dir))) 112 def copy_directory_contents_to_host(self, device_dir, host_dir): argument 116 if str(host_dir) != str(device_dir): 120 str(host_dir), str(device_dir)))
|
D | api.py | 89 def copy_directory_contents_to_device(self, host_dir, device_dir): argument 90 return self._f.copy_directory_contents_to_device(host_dir, device_dir) 92 def copy_directory_contents_to_host(self, device_dir, host_dir): argument 93 return self._f.copy_directory_contents_to_host(device_dir, host_dir)
|
/external/autotest/server/site_tests/telemetry_Crosperf/ |
D | telemetry_Crosperf.py | 65 def scp_telemetry_results(self, client_ip, dut, file, host_dir, argument 80 cmd.extend(['scp', DUT_SCP_OPTIONS, RSA_KEY, '-v', src, host_dir])
|
/external/autotest/server/site_tests/telemetry_AFDOGenerate/ |
D | telemetry_AFDOGenerate.py | 130 def scp_perf_data(self, dut, host_dir): argument 141 cmd.extend(['scp', DUT_SCP_OPTIONS, RSA_KEY, '-v', src, host_dir])
|
/external/python/setuptools/setuptools/ |
D | msvc.py | 923 host_dir = (r'bin\HostX86%s' if self.pi.current_is_x86() else 926 si.VCInstallDir, host_dir % self.pi.target_dir(x64=True))] 930 si.VCInstallDir, host_dir % self.pi.current_dir(x64=True))]
|