Home
last modified time | relevance | path

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

/aosp14/frameworks/base/tools/aapt2/compile/
H A DPngChunkFilter.cpp121 const uint32_t chunk_type = Peek32LE(data_.data() + window_end_ + sizeof(uint32_t)); in Next() local
125 chunk_type, (size_t)chunk_len, window_end_ + kMinChunkHeaderSize, data_.size()); in Next()
130 const uint32_t chunk_type = Peek32LE(data_.data() + window_end_ + sizeof(uint32_t)); in Next() local
131 if (IsPngChunkAllowed(chunk_type)) { in Next()
137 if (chunk_type == kPngChunkIEND) { in Next()
/aosp14/system/core/libsparse/
H A Dsimg_dump.py126 chunk_type = header[0]
138 if chunk_type == 0xCAC1:
150 elif chunk_type == 0xCAC2:
165 elif chunk_type == 0xCAC3:
171 elif chunk_type == 0xCAC4:
181 print("Unknown chunk type 0x%04X" % (chunk_type))
H A Dsparse_format.h47 __le16 chunk_type; /* 0xCAC1 -> raw; 0xCAC2 -> fill; 0xCAC3 -> don't care */ member
H A Doutput_file.cpp355 chunk_header.chunk_type = CHUNK_TYPE_DONT_CARE; in write_sparse_skip_chunk()
378 chunk_header.chunk_type = CHUNK_TYPE_FILL; in write_sparse_fill_chunk()
409 chunk_header.chunk_type = CHUNK_TYPE_RAW; in write_sparse_data_chunk()
460 chunk_header.chunk_type = CHUNK_TYPE_RAW; in write_sparse_fd_chunk()
510 chunk_header.chunk_type = CHUNK_TYPE_CRC32; in write_sparse_end_chunk()
H A Dsparse_read.cpp335 switch (chunk_header->chunk_type) { in process_chunk()
370 verbose_error(s->verbose, -EINVAL, "unknown block %04X at %" PRId64, chunk_header->chunk_type, in process_chunk()