Home
last modified time | relevance | path

Searched refs:chunk_type (Results 1 – 4 of 4) sorted by relevance

/rk3399_rockchip-uboot/fs/ext4/
H A Dext4_sparse.c40 if (chunk->chunk_type == CHUNK_TYPE_RAW) in print_chunk_info()
42 else if (chunk->chunk_type == CHUNK_TYPE_DONT_CARE) in print_chunk_info()
44 else if (chunk->chunk_type == CHUNK_TYPE_FILL) in print_chunk_info()
46 else if (chunk->chunk_type == CHUNK_TYPE_CRC32) in print_chunk_info()
178 switch (chunk->chunk_type) { in ext4_unsparse()
237 printf("sparse: unknown chunk type %04x.\n", chunk->chunk_type); in ext4_unsparse()
/rk3399_rockchip-uboot/common/
H A Dimage-sparse.c117 if (chunk_header->chunk_type != CHUNK_TYPE_RAW) { in write_sparse_image()
119 debug("chunk_type: 0x%x\n", chunk_header->chunk_type); in write_sparse_image()
135 switch (chunk_header->chunk_type) { in write_sparse_image()
249 chunk_header->chunk_type); in write_sparse_image()
/rk3399_rockchip-uboot/include/
H A Dsparse_format.h37 __le16 chunk_type; /* 0xCAC1 -> raw; 0xCAC2 -> fill; 0xCAC3 -> don't care */ member
/rk3399_rockchip-uboot/scripts/
H A Davbtool.py673 def __init__(self, chunk_type, chunk_offset, output_offset, output_size, argument
688 self.chunk_type = chunk_type
695 if self.chunk_type == self.TYPE_RAW:
700 elif self.chunk_type == self.TYPE_FILL:
705 elif self.chunk_type == self.TYPE_DONT_CARE:
814 (chunk_type, _, chunk_sz, total_sz) = struct.unpack(ImageChunk.FORMAT,
818 if chunk_type == ImageChunk.TYPE_RAW:
831 elif chunk_type == ImageChunk.TYPE_FILL:
842 elif chunk_type == ImageChunk.TYPE_DONT_CARE:
852 elif chunk_type == ImageChunk.TYPE_CRC32:
[all …]