Searched refs:chunks (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/core/proto/android/server/ |
D | backup_chunks_metadata.proto | 22 // Cipher type with which the chunks are encrypted. For now we only support AES/GCM/NoPadding, but 58 // List of the chunks in the blob, along with the length of each chunk. From this is it possible to 59 // extract individual chunks. (i.e., start position is equal to the sum of the lengths of all 60 // preceding chunks.) 63 // ChunkOrdering for how the device restores the chunks in the correct order. 66 repeated Chunk chunks = 1; field 68 // Cipher algorithm with which the chunks are encrypted. 91 // Ordered start positions of chunks. i.e., the file is the chunk starting at this position, 93 // lengths of the chunks by sorting this list then looking at the start position of the next 94 // chunk after the chunk you care about. This is guaranteed to work as all chunks are [all …]
|
/frameworks/base/core/java/android/util/jar/ |
D | StrictJarManifestReader.java | 58 …es(Map<String, Attributes> entries, Map<String, StrictJarManifest.Chunk> chunks) throws IOExceptio… in readEntries() argument 75 if (chunks != null) { in readEntries() 76 if (chunks.get(entryNameValue) != null) { in readEntries() 85 chunks.put(entryNameValue, new StrictJarManifest.Chunk(mark, pos)); in readEntries()
|
D | StrictJarManifest.java | 63 private HashMap<String, Chunk> chunks; field in StrictJarManifest 110 chunks = new HashMap<String, Chunk>(); in StrictJarManifest() 199 im.readEntries(entries, chunks); in read() 236 return chunks.get(name); in getChunk() 240 chunks = null; in removeChunks()
|
/frameworks/base/core/java/android/nfc/ |
D | NdefRecord.java | 793 ArrayList<byte[]> chunks = new ArrayList<byte[]>(); in parse() local 847 chunks.clear(); in parse() 852 chunks.add(payload); in parse() 857 for (byte[] p : chunks) { in parse() 863 for (byte[] p : chunks) { in parse()
|