Home
last modified time | relevance | path

Searched refs:ErrorCodeString (Results 1 – 9 of 9) sorted by relevance

/system/core/libziparchive/
Dunzip.cpp143 error(1, 0, "failed to extract %s: %s", name.c_str(), ErrorCodeString(err)); in ExtractToPipe()
197 if (err < 0) error(1, 0, "failed to extract %s: %s", dst.c_str(), ErrorCodeString(err)); in ExtractOne()
241 error(1, 0, "couldn't iterate %s: %s", archive_name, ErrorCodeString(err)); in ProcessAll()
251 if (err < -1) error(1, 0, "failed iterating %s: %s", archive_name, ErrorCodeString(err)); in ProcessAll()
333 error(1, 0, "couldn't open %s: %s", archive_name, ErrorCodeString(err)); in main()
Dzip_archive_test.cc636 TEST(ziparchive, ErrorCodeString) { in TEST() argument
637 ASSERT_STREQ("Success", ErrorCodeString(0)); in TEST()
640 ASSERT_STREQ("Unknown return code", ErrorCodeString(1)); in TEST()
641 ASSERT_STREQ("Unknown return code", ErrorCodeString(-13)); in TEST()
643 ASSERT_STREQ("I/O error", ErrorCodeString(kIoError)); in TEST()
Dzip_writer.cc73 const char* ZipWriter::ErrorCodeString(int32_t error_code) { in ErrorCodeString() function in ZipWriter
Dzip_archive.cc1093 const char* ErrorCodeString(int32_t error_code) { in ErrorCodeString() function
/system/core/libziparchive/include/ziparchive/
Dzip_writer.h84 static const char* ErrorCodeString(int32_t error_code);
Dzip_archive.h220 const char* ErrorCodeString(int32_t error_code);
/system/extras/simpleperf/
Dread_apk.cpp132 << ": " << ErrorCodeString(rc); in FindOffsetInApkByName()
Dutils.cpp86 LOG(ERROR) << "Failed to open archive " << debug_filename << ": " << ErrorCodeString(rc); in ArchiveHelper()
/system/core/fastboot/
Dfastboot.cpp511 if (error != 0) die("failed to extract '%s': %s", entry_name, ErrorCodeString(error)); in unzip_to_memory()
629 die("\nfailed to extract '%s': %s", entry_name, ErrorCodeString(error)); in unzip_to_file()
1155 die("failed to open zip file '%s': %s", filename, ErrorCodeString(error)); in do_update()