All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.dongliu.apk.parser.struct.ChunkHeader Maven / Gradle / Ivy

The newest version!
package net.dongliu.apk.parser.struct;

/**
 * A Chunk is just a piece of memory split into two parts, a header and a body.
 * The exact structure of the header and the body of a given Chunk is determined by its type.
 * 
 * chunk header struct.
 * struct ResChunk_header {
 * uint16_t type;
 * uint16_t headerSize;
 * uint32_t size;
 * }
 * 
* * @author dongliu */ public class ChunkHeader { // Type identifier for this chunk. The meaning of this value depends // on the containing chunk. public int chunkType; // Size of the chunk header (in bytes). Adding this value to // the address of the chunk allows you to find its associated data // (if any). public int headerSize; // Total size of this chunk (in bytes). This is the chunkSize plus // the size of any data associated with the chunk. Adding this value // to the chunk allows you to completely skip its contents (including // any child chunks). If this value is the same as chunkSize, there is // no data associated with the chunk. public long chunkSize; public ChunkHeader(int chunkType, int headerSize, long chunkSize) { this.chunkType = chunkType; this.headerSize = headerSize; this.chunkSize = chunkSize; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy