OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:uncompLen
(Results
1 - 3
of
3
) sorted by null
/bootable/recovery/minzip/
Zip.h
37
long
uncompLen
;
92
return pEntry->
uncompLen
;
/frameworks/base/cmds/idmap/
scan.cpp
133
uint32_t
uncompLen
= 0;
135
if (!zip->getEntryInfo(entry, &method, &
uncompLen
, NULL, NULL, NULL, NULL)) {
148
char *buf = new char[
uncompLen
];
150
ALOGW("%s: failed to allocate %" PRIu32 " byte\n", __FUNCTION__,
uncompLen
);
154
StreamingZipInflater inflater(dataMap,
uncompLen
);
155
if (inflater.read(buf,
uncompLen
) < 0) {
156
ALOGW("%s: failed to inflate %" PRIu32 " byte\n", __FUNCTION__,
uncompLen
);
162
int priority = parse_manifest(buf, static_cast<size_t>(
uncompLen
), target_package_name);
/frameworks/base/core/jni/
com_android_internal_content_NativeLibraryHelper.cpp
159
uint32_t
uncompLen
;
161
if (!zipFile->getEntryInfo(zipEntry, NULL, &
uncompLen
, NULL, NULL, NULL, NULL)) {
165
*total += static_cast<size_t>(
uncompLen
);
185
uint32_t
uncompLen
;
192
if (!zipFile->getEntryInfo(zipEntry, &method, &
uncompLen
, NULL, &offset, &when, &crc)) {
238
if (!isFileDifferent(localFileName,
uncompLen
, modTime, crc, &st)) {
Completed in 302 milliseconds