OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:uncompLen
(Results
1 - 9
of
9
) sorted by null
/frameworks/base/cmds/idmap/
scan.cpp
156
size_t
uncompLen
= 0;
158
if (!zip->getEntryInfo(entry, &method, &
uncompLen
, NULL, NULL, NULL, NULL)) {
171
char *buf = new char[
uncompLen
];
173
ALOGW("%s: failed to allocate %d byte\n", __FUNCTION__,
uncompLen
);
177
StreamingZipInflater inflater(dataMap,
uncompLen
);
178
if (inflater.read(buf,
uncompLen
) < 0) {
179
ALOGW("%s: failed to inflate %d byte\n", __FUNCTION__,
uncompLen
);
185
int priority = parse_manifest(buf,
uncompLen
, target_package_name);
/bootable/recovery/updater/
updater.c
91
char* script = malloc(script_entry->
uncompLen
+1);
92
if (!mzReadZipEntry(&za, script_entry, script, script_entry->
uncompLen
)) {
96
script[script_entry->
uncompLen
] = '\0';
/bootable/recovery/minzip/
Zip.h
37
long
uncompLen
;
128
return pEntry->
uncompLen
;
Zip.c
95
pEntry->compLen, pEntry->
uncompLen
, pEntry->compression);
338
pEntry->
uncompLen
= get4LE(ptr + CENLEN);
505
return processFunction(pArchive->addr + pEntry->offset, pEntry->
uncompLen
, cookie);
586
if (result != pEntry->
uncompLen
) {
589
result, pEntry->
uncompLen
);
753
*length = pEntry->
uncompLen
;
1024
if (pEntry->
uncompLen
== 0) {
1030
char *linkTarget = malloc(pEntry->
uncompLen
+ 1);
1036
pEntry->
uncompLen
);
1043
linkTarget[pEntry->
uncompLen
] = '\0'
[
all
...]
/frameworks/base/core/jni/
com_android_internal_content_NativeLibraryHelper.cpp
157
size_t
uncompLen
;
159
if (!zipFile->getEntryInfo(zipEntry, NULL, &
uncompLen
, NULL, NULL, NULL, NULL)) {
163
*total +=
uncompLen
;
179
size_t
uncompLen
;
184
if (!zipFile->getEntryInfo(zipEntry, NULL, &
uncompLen
, NULL, NULL, &when, &crc)) {
212
if (!isFileDifferent(localFileName,
uncompLen
, modTime, crc, &st)) {
/build/tools/zipalign/
ZipEntry.h
180
void setDataInfo(long
uncompLen
, long compLen, unsigned long crc32,
ZipEntry.cpp
259
void ZipEntry::setDataInfo(long
uncompLen
, long compLen, unsigned long crc32,
265
mCDE.mUncompressedSize =
uncompLen
;
/frameworks/base/tools/aapt/
ZipEntry.h
185
void setDataInfo(long
uncompLen
, long compLen, unsigned long crc32,
ZipEntry.cpp
259
void ZipEntry::setDataInfo(long
uncompLen
, long compLen, unsigned long crc32,
265
mCDE.mUncompressedSize =
uncompLen
;
Completed in 655 milliseconds