Home | History | Annotate | Download | only in android

Lines Matching refs:partitions

38 def _FindAndVerifyPartitionsAndImages(partitions, directory):
39 """Validate partitions and images.
45 Partitions: partitions to be tested.
60 for partition in partitions:
181 def _FlashPartitions(self, partitions, directory, wipe=False, force=False):
185 partitions: List of partitions to flash.
186 directory: Directory where all partitions can be found.
188 partitions are sent, and if so ignore them.
206 flash_image_files = _FindAndVerifyPartitionsAndImages(partitions, directory)
207 partitions = flash_image_files.keys()
208 for partition in partitions:
236 def FlashDevice(self, directory, partitions=None, wipe=False):
247 partitions: List of partitions to flash. Defaults to all.
249 if partitions is None:
250 partitions = ALL_PARTITIONS
256 self._FlashPartitions(partitions, directory, wipe=wipe)