Searched refs:mounter (Results 1 – 5 of 5) sorted by relevance
111 file_accessors = [(path_prefix, mounter.mount())112 for (path_prefix, mounter) in self._mounters]117 for (_, mounter) in reversed(self._mounters):118 mounter.unmount()120 def add_sub_mounter(self, mount_point, mounter): argument121 self._mounters.append((mount_point, mounter))127 mounter = _MounterFactory.create_by_mount_target(mount_target, partition)128 self.add_sub_mounter(mount_point, mounter)
37 mounter = composite_mounter.CompositeMounter()42 mounter.add_by_mount_target(partition, image_source)44 if mounter.is_empty():47 return mounter
29 mounter = image_sources.create_composite_mounter_by_args(args)30 with mounter as file_accessor:
88 mounter = image_sources.create_composite_mounter_by_args(args)89 with mounter as file_accessor:
118 mounter = image_sources.create_composite_mounter_by_args(args)119 with mounter as file_accessor: