Home | History | Annotate | Download | only in jni

Lines Matching refs:zipFile

146 sumFiles(JNIEnv* env, void* arg, ZipFileRO* zipFile, ZipEntryRO zipEntry, const char* fileName)
151 if (!zipFile->getEntryInfo(zipEntry, NULL, &uncompLen, NULL, NULL, NULL, NULL)) {
166 copyFileIfChanged(JNIEnv *env, void* arg, ZipFileRO* zipFile, ZipEntryRO zipEntry, const char* fileName)
176 if (!zipFile->getEntryInfo(zipEntry, NULL, &uncompLen, NULL, NULL, &when, &crc)) {
229 if (!zipFile->uncompressEntry(zipEntry, fd)) {
276 ZipFileRO zipFile;
278 if (zipFile.open(filePath.c_str()) != NO_ERROR) {
283 const int N = zipFile.getNumEntries();
289 const ZipEntryRO entry = zipFile.findEntryByIndex(i);
295 if (zipFile.getEntryFileName(entry, fileName, sizeof(fileName))) {
349 install_status_t ret = callFunc(env, callArg, &zipFile, entry, lastSlash + 1);