Home | History | Annotate | Download | only in android

Lines Matching refs:partitions

36 def _FindAndVerifyPartitionsAndImages(partitions, directory):
37 """Validate partitions and images.
43 Partitions: partitions to be tested.
58 for partition in partitions:
179 def _FlashPartitions(self, partitions, directory, wipe=False, force=False):
183 partitions: List of partitions to flash.
184 directory: Directory where all partitions can be found.
186 partitions are sent, and if so ignore them.
204 flash_image_files = _FindAndVerifyPartitionsAndImages(partitions, directory)
205 partitions = flash_image_files.keys()
206 for partition in partitions:
234 def FlashDevice(self, directory, partitions=None, wipe=False):
245 partitions: List of partitions to flash. Defaults to all.
247 if partitions is None:
248 partitions = ALL_PARTITIONS
254 self._FlashPartitions(partitions, directory, wipe=wipe)