Home
last modified time | relevance | path

Searched refs:debugFileName (Results 1 – 4 of 4) sorted by relevance

/aosp12/frameworks/base/libs/androidfw/
H A DZipFileRO.cpp81 /* static */ ZipFileRO* ZipFileRO::openFd(int fd, const char* debugFileName, in openFd() argument
85 const int32_t error = OpenArchiveFd(fd, debugFileName, &handle, assume_ownership); in openFd()
87 ALOGW("Error opening archive fd %d %s: %s", fd, debugFileName, ErrorCodeString(error)); in openFd()
92 return new ZipFileRO(handle, strdup(debugFileName)); in openFd()
/aosp12/system/libziparchive/include/ziparchive/
H A Dzip_archive.h168 int32_t OpenArchiveFd(const int fd, const char* debugFileName, ZipArchiveHandle* handle,
171 int32_t OpenArchiveFdRange(const int fd, const char* debugFileName, ZipArchiveHandle* handle,
174 int32_t OpenArchiveFromMemory(const void* address, size_t length, const char* debugFileName,
/aosp12/system/libziparchive/
H A Dzip_archive.cc156 static ZipError FindCentralDirectoryInfoForZip64(const char* debugFileName, ZipArchive* archive, in FindCentralDirectoryInfoForZip64() argument
159 ALOGW("Zip: %s: Not enough space for zip64 eocd locator", debugFileName); in FindCentralDirectoryInfoForZip64()
167 ALOGW("Zip: %s: Read %zu from offset %" PRId64 " failed %s", debugFileName, in FindCentralDirectoryInfoForZip64()
168 sizeof(Zip64EocdLocator), locatorOffset, debugFileName); in FindCentralDirectoryInfoForZip64()
173 ALOGW("Zip: %s: Zip64 eocd locator signature not found at offset %" PRId64, debugFileName, in FindCentralDirectoryInfoForZip64()
181 ALOGW("Zip: %s: Bad zip64 eocd offset %" PRId64 ", eocd locator offset %" PRId64, debugFileName, in FindCentralDirectoryInfoForZip64()
189 ALOGW("Zip: %s: read %zu from offset %" PRId64 " failed %s", debugFileName, in FindCentralDirectoryInfoForZip64()
190 sizeof(Zip64EocdLocator), zip64EocdOffset, debugFileName); in FindCentralDirectoryInfoForZip64()
195 ALOGW("Zip: %s: Zip64 eocd record signature not found at offset %" PRId64, debugFileName, in FindCentralDirectoryInfoForZip64()
204 debugFileName, zip64EocdRecord.cd_start_offset, zip64EocdRecord.cd_size, zip64EocdOffset); in FindCentralDirectoryInfoForZip64()
/aosp12/frameworks/base/libs/androidfw/include/androidfw/
H A DZipFileRO.h89 static ZipFileRO* openFd(int fd, const char* debugFileName,