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

/frameworks/base/libs/androidfw/
H A DZipFileRO.cpp104 const _ZipEntryRO* zipEntry = reinterpret_cast<_ZipEntryRO*>(entry); local
105 const ZipEntry& ze = zipEntry->entry;
181 const _ZipEntryRO* zipEntry = reinterpret_cast<_ZipEntryRO*>(entry); local
182 const uint16_t requiredSize = zipEntry->name.name_length + 1;
189 memcpy(buffer, zipEntry->name.name, requiredSize - 1);
200 const _ZipEntryRO *zipEntry = reinterpret_cast<_ZipEntryRO*>(entry); local
201 const ZipEntry& ze = zipEntry->entry;
228 _ZipEntryRO *zipEntry = reinterpret_cast<_ZipEntryRO*>(entry); local
229 const int32_t error = ExtractToMemory(mHandle, &(zipEntry->entry),
246 _ZipEntryRO *zipEntry local
[all...]
/frameworks/base/core/java/com/android/internal/content/
H A DPackageHelper.java270 for (final ZipEntry zipEntry : Collections.list(privateZip.entries())) {
271 final String zipEntryName = zipEntry.getName();
275 size += zipEntry.getSize();
277 copyZipEntry(zipEntry, privateZip, publicZipOutStream);
300 private static void copyZipEntry(ZipEntry zipEntry, ZipFile inZipFile, argument
306 if (zipEntry.getMethod() == ZipEntry.STORED) {
308 newEntry = new ZipEntry(zipEntry);
311 newEntry = new ZipEntry(zipEntry.getName());
315 final InputStream data = inZipFile.getInputStream(zipEntry);
/frameworks/base/core/jni/
H A Dcom_android_internal_content_NativeLibraryHelper.cpp156 sumFiles(JNIEnv*, void* arg, ZipFileRO* zipFile, ZipEntryRO zipEntry, const char*) argument
161 if (!zipFile->getEntryInfo(zipEntry, NULL, &uncompLen, NULL, NULL, NULL, NULL)) {
176 copyFileIfChanged(JNIEnv *env, void* arg, ZipFileRO* zipFile, ZipEntryRO zipEntry, const char* fileName) argument
192 if (!zipFile->getEntryInfo(zipEntry, &method, &uncompLen, NULL, &offset, &when, &crc)) {
263 if (!zipFile->uncompressEntry(zipEntry, fd)) {

Completed in 67 milliseconds