Lines Matching refs:AvbFooter
1957 class AvbFooter(object): class
2368 footer_blob_with_padding = (b'\0' * (image.block_size - AvbFooter.SIZE) +
2759 image.seek(image.image_size - AvbFooter.SIZE)
2761 footer = AvbFooter(image.read(AvbFooter.SIZE))
2794 image.seek(image.image_size - AvbFooter.SIZE)
2796 footer = AvbFooter(image.read(AvbFooter.SIZE))
3271 if image.image_size >= AvbFooter.SIZE:
3272 image.seek(image.image_size - AvbFooter.SIZE)
3274 footer = AvbFooter(image.read(AvbFooter.SIZE))
3318 footer = AvbFooter()
3323 footer_blob_with_padding = (b'\0' * (image.block_size - AvbFooter.SIZE) +
3423 if image.image_size >= AvbFooter.SIZE:
3424 image.seek(image.image_size - AvbFooter.SIZE)
3426 footer = AvbFooter(image.read(AvbFooter.SIZE))
3534 footer = AvbFooter()
3540 b'\0' * (image.block_size - AvbFooter.SIZE) + footer_blob)
3668 if image.image_size >= AvbFooter.SIZE:
3669 image.seek(image.image_size - AvbFooter.SIZE)
3671 footer = AvbFooter(image.read(AvbFooter.SIZE))
3811 footer = AvbFooter()
3817 b'\0' * (image.block_size - AvbFooter.SIZE) + footer_blob)