Lines Matching defs:error
68 const int32_t error = OpenArchive(zipFileName, &handle);
69 if (error) {
70 ALOGW("Error opening archive %s: %s", zipFileName, ErrorCodeString(error));
85 const int32_t error = FindEntry(mHandle, data->name, &(data->entry));
86 if (error) {
138 int32_t error = StartIteration(mHandle, &(ze->cookie),
141 if (error) {
142 ALOGW("Could not start iteration over %s: %s", mFileName, ErrorCodeString(error));
154 int32_t error = Next(ze->cookie, &(ze->entry), &(ze->name));
155 if (error) {
156 if (error != -1) {
157 ALOGW("Error iteration over %s: %s", mFileName, ErrorCodeString(error));
229 const int32_t error = ExtractToMemory(mHandle, &(zipEntry->entry),
231 if (error) {
232 ALOGW("ExtractToMemory failed with %s", ErrorCodeString(error));
247 const int32_t error = ExtractEntryToFile(mHandle, &(zipEntry->entry), fd);
248 if (error) {
249 ALOGW("ExtractToMemory failed with %s", ErrorCodeString(error));