Searched refs:host_dir (Results 1 – 7 of 7) sorted by relevance
/external/autotest/site_utils/lxc/ |
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 | 83 def cleanup_host_mount(host_dir): argument 89 utils.run('sudo umount "%s"' % host_dir) 94 utils.run('sudo rm -r "%s"' % host_dir)
|
D | container_unittest.py | 57 for host_dir in os.listdir(self.shared_host_path): 58 host_dir = os.path.realpath(os.path.join(self.shared_host_path, 59 host_dir)) 60 lxc_utils.cleanup_host_mount(host_dir);
|
D | zygote_unittest.py | 58 for host_dir in os.listdir(self.shared_host_path): 59 host_dir = os.path.realpath(os.path.join(self.shared_host_path, 60 host_dir)) 61 lxc_utils.cleanup_host_mount(host_dir);
|
/external/skia/infra/bots/recipe_modules/flavor/ |
D | default_flavor.py | 106 def copy_directory_contents_to_device(self, host_dir, device_dir): argument 110 if str(host_dir) != str(device_dir): 114 str(host_dir), str(device_dir))) 116 def copy_directory_contents_to_host(self, device_dir, host_dir): argument 120 if str(host_dir) != str(device_dir): 124 str(host_dir), str(device_dir)))
|
D | api.py | 96 def copy_directory_contents_to_device(self, host_dir, device_dir): argument 97 return self._f.copy_directory_contents_to_device(host_dir, device_dir) 99 def copy_directory_contents_to_host(self, device_dir, host_dir): argument 100 return self._f.copy_directory_contents_to_host(device_dir, host_dir)
|
/external/v8/tools/ |
D | run_perf.py | 737 def _PushFile(self, host_dir, file_name, target_rel=".", argument 739 file_on_host = os.path.join(host_dir, file_name)
|