Lines Matching refs:error
70 const int32_t error = OpenArchive(zipFileName, &handle); in open() local
71 if (error) { in open()
72 ALOGW("Error opening archive %s: %s", zipFileName, ErrorCodeString(error)); in open()
85 const int32_t error = OpenArchiveFd(fd, debugFileName, &handle, assume_ownership); in openFd() local
86 if (error) { in openFd()
87 ALOGW("Error opening archive fd %d %s: %s", fd, debugFileName, ErrorCodeString(error)); in openFd()
101 const int32_t error = FindEntry(mHandle, entryName, &(data->entry)); in findEntryByName() local
102 if (error) { in findEntryByName()
152 int32_t error = StartIteration(mHandle, &(ze->cookie), in startIteration() local
154 if (error) { in startIteration()
156 ErrorCodeString(error)); in startIteration()
168 int32_t error = Next(ze->cookie, &(ze->entry), &(ze->name)); in nextEntry() local
169 if (error) { in nextEntry()
170 if (error != -1) { in nextEntry()
172 ErrorCodeString(error)); in nextEntry()
244 const int32_t error = ExtractToMemory(mHandle, &(zipEntry->entry), in uncompressEntry() local
246 if (error) { in uncompressEntry()
247 ALOGW("ExtractToMemory failed with %s", ErrorCodeString(error)); in uncompressEntry()
262 const int32_t error = ExtractEntryToFile(mHandle, &(zipEntry->entry), fd); in uncompressEntry() local
263 if (error) { in uncompressEntry()
264 ALOGW("ExtractToMemory failed with %s", ErrorCodeString(error)); in uncompressEntry()