OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mInNextChunkOffset
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/include/androidfw/
StreamingZipInflater.h
78
size_t
mInNextChunkOffset
; // offset from start of blob at which the next input chunk lies
/frameworks/base/libs/androidfw/
StreamingZipInflater.cpp
109
mInNextChunkOffset
= 0;
208
if (
mInNextChunkOffset
< mInTotalSize) {
209
size_t toRead = min_of(mInBufSize, mInTotalSize -
mInNextChunkOffset
);
217
mInNextChunkOffset
+= didRead;
Completed in 62 milliseconds