Searched refs:BindMount (Results 1 – 2 of 2) sorted by relevance
/tools/treble/build/sandbox/ |
D | nsjail.py | 28 from .overlay import BindMount 297 bind_mounts[_SOURCE_MOUNT_POINT] = BindMount(source_dir, False) 300 bind_mounts[_OUT_MOUNT_POINT] = BindMount(out_dir, False) 303 bind_mounts[_DIST_MOUNT_POINT] = BindMount(dist_dir, False) 309 bind_mounts[_META_MOUNT_POINT] = BindMount(meta_root_dir, False) 310 bind_mounts[os.path.join(_META_MOUNT_POINT, meta_android_dir)] = BindMount(source_dir, False) 312 … bind_mounts[os.path.join(_META_MOUNT_POINT, meta_android_dir, 'out')] = BindMount(out_dir, False)
|
D | overlay.py | 31 BindMount = collections.namedtuple('BindMount', ['source_dir', 'readonly']) variable 271 self._bind_mounts[destination_dir] = BindMount(
|