Searched refs:zipEntry (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/libs/androidfw/
H A DZipFileRO.cpp107 const _ZipEntryRO* zipEntry = reinterpret_cast<_ZipEntryRO*>(entry); local
108 const ZipEntry& ze = zipEntry->entry;
176 const _ZipEntryRO* zipEntry = reinterpret_cast<_ZipEntryRO*>(entry); local
177 const uint16_t requiredSize = zipEntry->name.name_length + 1;
184 memcpy(buffer, zipEntry->name.name, requiredSize - 1);
195 const _ZipEntryRO *zipEntry = reinterpret_cast<_ZipEntryRO*>(entry); local
196 const ZipEntry& ze = zipEntry->entry;
223 _ZipEntryRO *zipEntry = reinterpret_cast<_ZipEntryRO*>(entry); local
224 const int32_t error = ExtractToMemory(mHandle, &(zipEntry->entry),
241 _ZipEntryRO *zipEntry local
[all...]
/frameworks/base/core/java/com/android/internal/content/
H A DPackageHelper.java266 for (final ZipEntry zipEntry : Collections.list(privateZip.entries())) {
267 final String zipEntryName = zipEntry.getName();
271 size += zipEntry.getSize();
273 copyZipEntry(zipEntry, privateZip, publicZipOutStream);
296 private static void copyZipEntry(ZipEntry zipEntry, ZipFile inZipFile, argument
302 if (zipEntry.getMethod() == ZipEntry.STORED) {
304 newEntry = new ZipEntry(zipEntry);
307 newEntry = new ZipEntry(zipEntry.getName());
311 final InputStream data = inZipFile.getInputStream(zipEntry);
/frameworks/base/core/jni/
H A Dcom_android_internal_content_NativeLibraryHelper.cpp154 sumFiles(JNIEnv*, void* arg, ZipFileRO* zipFile, ZipEntryRO zipEntry, const char*) argument
159 if (!zipFile->getEntryInfo(zipEntry, NULL, &uncompLen, NULL, NULL, NULL, NULL)) {
174 copyFileIfChanged(JNIEnv *env, void* arg, ZipFileRO* zipFile, ZipEntryRO zipEntry, const char* fileName) argument
184 if (!zipFile->getEntryInfo(zipEntry, NULL, &uncompLen, NULL, NULL, &when, &crc)) {
237 if (!zipFile->uncompressEntry(zipEntry, fd)) {

Completed in 196 milliseconds