Searched refs:ErrorCodeString (Results 1 – 9 of 9) sorted by relevance
| /system/core/libziparchive/ |
| D | unzip.cpp | 143 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()
|
| D | zip_archive_test.cc | 636 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()
|
| D | zip_writer.cc | 73 const char* ZipWriter::ErrorCodeString(int32_t error_code) { in ErrorCodeString() function in ZipWriter
|
| D | zip_archive.cc | 1093 const char* ErrorCodeString(int32_t error_code) { in ErrorCodeString() function
|
| /system/core/libziparchive/include/ziparchive/ |
| D | zip_writer.h | 84 static const char* ErrorCodeString(int32_t error_code);
|
| D | zip_archive.h | 220 const char* ErrorCodeString(int32_t error_code);
|
| /system/extras/simpleperf/ |
| D | read_apk.cpp | 132 << ": " << ErrorCodeString(rc); in FindOffsetInApkByName()
|
| D | utils.cpp | 86 LOG(ERROR) << "Failed to open archive " << debug_filename << ": " << ErrorCodeString(rc); in ArchiveHelper()
|
| /system/core/fastboot/ |
| D | fastboot.cpp | 511 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()
|