Home
last modified time | relevance | path

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

/system/extras/simpleperf/
Dcmd_api.cpp174 << zip_writer.ErrorCodeString(result); in CollectRecordingData()
194 << zip_writer.ErrorCodeString(result); in CollectRecordingData()
201 << zip_writer.ErrorCodeString(result); in CollectRecordingData()
207 LOG(ERROR) << "failed to finish zip writer: " << zip_writer.ErrorCodeString(result); in CollectRecordingData()
Dutils.cpp96 LOG(ERROR) << "Failed to open archive " << filename << ": " << ErrorCodeString(result); in CreateInstance()
/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.cc634 TEST(ziparchive, ErrorCodeString) { in TEST() argument
635 ASSERT_STREQ("Success", ErrorCodeString(0)); in TEST()
638 ASSERT_STREQ("Unknown return code", ErrorCodeString(1)); in TEST()
639 ASSERT_STREQ("Unknown return code", ErrorCodeString(-13)); in TEST()
641 ASSERT_STREQ("I/O error", ErrorCodeString(kIoError)); in TEST()
Dzip_writer.cc75 const char* ZipWriter::ErrorCodeString(int32_t error_code) { in ErrorCodeString() function in ZipWriter
Dzip_archive.cc1148 const char* ErrorCodeString(int32_t error_code) { in ErrorCodeString() function
/system/apex/apexd/
Dapex_file.cpp119 << ErrorCodeString(ret); in Open()
129 << path << ": " << ErrorCodeString(ret); in Open()
139 << path << ": " << ErrorCodeString(ret); in Open()
151 << ": " << ErrorCodeString(ret); in Open()
165 << path << ": " << ErrorCodeString(ret); in Open()
/system/core/libziparchive/include/ziparchive/
Dzip_writer.h83 static const char* ErrorCodeString(int32_t error_code);
Dzip_archive.h222 const char* ErrorCodeString(int32_t error_code);
/system/core/fastboot/
Dfastboot.cpp519 if (error != 0) die("failed to extract '%s': %s", entry_name.c_str(), ErrorCodeString(error)); in UnzipToMemory()
630 die("\nfailed to extract '%s': %s", entry_name, ErrorCodeString(error)); in unzip_to_file()
1389 die("failed to open zip file '%s': %s", filename, ErrorCodeString(error)); in do_update()