Home | History | Annotate | Download | only in cros

Lines Matching defs:storages

52     storages = None
67 Calling this method does not change self.storages, thus can be called
78 for storage in self.storages:
96 The result (being it filtered or not) will be saved in self.storages.
106 self.storages = liststorage.get_all()
109 self.storages = self.filter(storage_filter)
111 return self.storages
121 @param index: (int) the index in self.storages for the storage
130 storage_dict = self.storages[0]
132 storage_dict = self.storages[index]
165 @param index: (int) the index in self.storages for the storage
174 storage_dict = self.storages[0]
176 storage_dict = self.storages[index]
253 self.storages = None
260 the matching storages with |filesystem|.
266 @param filter_dict: a filter for the storages to be prepared.
274 storages = self.wait_for_devices(filter_dict, cycles=1,
277 for storage in storages:
366 storages, waited_time = self.wait_for_devices(storage_filter,
370 if len(storages) > 1:
377 return (storages[0], waited_time)