Loading core/jni/android_util_jar_StrictJarFile.cpp +2 −10 Original line number Diff line number Diff line Loading @@ -100,16 +100,8 @@ jlong StrictJarFile_nativeStartIteration(JNIEnv* env, jobject, jlong nativeHandl } IterationHandle* handle = new IterationHandle(); int32_t error = 0; if (prefixChars.size() == 0) { error = StartIteration(reinterpret_cast<ZipArchiveHandle>(nativeHandle), handle->CookieAddress(), NULL, NULL); } else { ZipString entry_name(prefixChars.c_str()); error = StartIteration(reinterpret_cast<ZipArchiveHandle>(nativeHandle), handle->CookieAddress(), &entry_name, NULL); } int32_t error = StartIteration(reinterpret_cast<ZipArchiveHandle>(nativeHandle), handle->CookieAddress(), prefixChars.c_str(), ""); if (error) { throwIoException(env, error); return static_cast<jlong>(-1); Loading libs/androidfw/ApkAssets.cpp +1 −2 Original line number Diff line number Diff line Loading @@ -206,9 +206,8 @@ bool ApkAssets::ForEachFile(const std::string& root_path, root_path_full += '/'; } ::ZipString prefix(root_path_full.c_str()); void* cookie; if (::StartIteration(zip_handle_.get(), &cookie, &prefix, nullptr) != 0) { if (::StartIteration(zip_handle_.get(), &cookie, root_path_full, "") != 0) { return false; } Loading libs/androidfw/ZipFileRO.cpp +1 −4 Original line number Diff line number Diff line Loading @@ -149,11 +149,8 @@ bool ZipFileRO::startIteration(void** cookie) { bool ZipFileRO::startIteration(void** cookie, const char* prefix, const char* suffix) { _ZipEntryRO* ze = new _ZipEntryRO; ZipString pe(prefix ? prefix : ""); ZipString se(suffix ? suffix : ""); int32_t error = StartIteration(mHandle, &(ze->cookie), prefix ? &pe : NULL, suffix ? &se : NULL); prefix ? prefix : "", suffix ? suffix : ""); if (error) { ALOGW("Could not start iteration over %s: %s", mFileName != NULL ? mFileName : "<null>", ErrorCodeString(error)); Loading Loading
core/jni/android_util_jar_StrictJarFile.cpp +2 −10 Original line number Diff line number Diff line Loading @@ -100,16 +100,8 @@ jlong StrictJarFile_nativeStartIteration(JNIEnv* env, jobject, jlong nativeHandl } IterationHandle* handle = new IterationHandle(); int32_t error = 0; if (prefixChars.size() == 0) { error = StartIteration(reinterpret_cast<ZipArchiveHandle>(nativeHandle), handle->CookieAddress(), NULL, NULL); } else { ZipString entry_name(prefixChars.c_str()); error = StartIteration(reinterpret_cast<ZipArchiveHandle>(nativeHandle), handle->CookieAddress(), &entry_name, NULL); } int32_t error = StartIteration(reinterpret_cast<ZipArchiveHandle>(nativeHandle), handle->CookieAddress(), prefixChars.c_str(), ""); if (error) { throwIoException(env, error); return static_cast<jlong>(-1); Loading
libs/androidfw/ApkAssets.cpp +1 −2 Original line number Diff line number Diff line Loading @@ -206,9 +206,8 @@ bool ApkAssets::ForEachFile(const std::string& root_path, root_path_full += '/'; } ::ZipString prefix(root_path_full.c_str()); void* cookie; if (::StartIteration(zip_handle_.get(), &cookie, &prefix, nullptr) != 0) { if (::StartIteration(zip_handle_.get(), &cookie, root_path_full, "") != 0) { return false; } Loading
libs/androidfw/ZipFileRO.cpp +1 −4 Original line number Diff line number Diff line Loading @@ -149,11 +149,8 @@ bool ZipFileRO::startIteration(void** cookie) { bool ZipFileRO::startIteration(void** cookie, const char* prefix, const char* suffix) { _ZipEntryRO* ze = new _ZipEntryRO; ZipString pe(prefix ? prefix : ""); ZipString se(suffix ? suffix : ""); int32_t error = StartIteration(mHandle, &(ze->cookie), prefix ? &pe : NULL, suffix ? &se : NULL); prefix ? prefix : "", suffix ? suffix : ""); if (error) { ALOGW("Could not start iteration over %s: %s", mFileName != NULL ? mFileName : "<null>", ErrorCodeString(error)); Loading