OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:kEOCDLen
(Results
1 - 5
of
5
) sorted by null
/build/tools/zipalign/
ZipFile.h
203
kEOCDLen
= 22, // EndOfCentralDir len, excl. comment
206
kMaxEOCDSearch = kMaxCommentLen + EndOfCentralDir::
kEOCDLen
,
/frameworks/base/tools/aapt/
ZipFile.h
203
kEOCDLen
= 22, // EndOfCentralDir len, excl. comment
206
kMaxEOCDSearch = kMaxCommentLen + EndOfCentralDir::
kEOCDLen
,
/art/runtime/
zip_archive.h
76
static const int32_t
kEOCDLen
= 22;
86
static const int32_t kMaxEOCDSearch = (kMaxCommentLen +
kEOCDLen
);
/dalvik/libdex/
ZipArchive.cpp
41
#define
kEOCDLen
22
51
#define kMaxEOCDSearch (kMaxCommentLen +
kEOCDLen
)
211
for (i = readAmount -
kEOCDLen
; i >= 0; i--) {
254
if (((size_t) commentSize > (fileLength -
kEOCDLen
))
255
|| (eocdOffset > (fileLength -
kEOCDLen
) - commentSize)) {
295
if (fileLength <
kEOCDLen
) {
/frameworks/base/libs/androidfw/
ZipFileRO.cpp
50
#define
kEOCDLen
22
60
#define kMaxEOCDSearch (kMaxCommentLen +
kEOCDLen
)
138
if (mFileLength <
kEOCDLen
) {
252
for (i = readAmount -
kEOCDLen
; i >= 0; i--) {
297
if ((commentSize > (mFileLength -
kEOCDLen
))
298
|| (eocdOffset > (mFileLength -
kEOCDLen
) - commentSize)) {
Completed in 66 milliseconds