OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:commentSize
(Results
1 - 5
of
5
) sorted by null
/frameworks/base/core/java/android/os/
RecoverySystem.java
170
int
commentSize
= (footer[4] & 0xff) | ((footer[5] & 0xff) << 8);
173
byte[] eocd = new byte[
commentSize
+ 22];
174
raf.seek(fileLen - (
commentSize
+ 22));
198
new ByteArrayInputStream(eocd,
commentSize
+22-signatureStart, signatureStart));
274
long toRead = fileLen -
commentSize
- 2;
/dalvik/libdex/
ZipArchive.cpp
237
u4
commentSize
= get2LE(eocdPtr + kEOCDCommentSize);
254
if (((size_t)
commentSize
> (fileLength - kEOCDLen))
255
|| (eocdOffset > (fileLength - kEOCDLen) -
commentSize
)) {
/frameworks/base/libs/androidfw/
ZipFileRO.cpp
279
unsigned int
commentSize
= get2LE(eocdPtr + kEOCDCommentSize);
297
if ((
commentSize
> (mFileLength - kEOCDLen))
298
|| (eocdOffset > (mFileLength - kEOCDLen) -
commentSize
)) {
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
zipfile.py
249
commentSize
= endrec[_ECD_COMMENT_SIZE] #as claimed by the zip file
250
comment = data[start+sizeEndCentDir:start+sizeEndCentDir+
commentSize
]
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
zipfile.py
249
commentSize
= endrec[_ECD_COMMENT_SIZE] #as claimed by the zip file
250
comment = data[start+sizeEndCentDir:start+sizeEndCentDir+
commentSize
]
[
all
...]
Completed in 259 milliseconds