Searched defs:error_msgs (Results 1 - 3 of 3) sorted by relevance

/art/runtime/native/
H A Ddalvik_system_DexFile.cc165 std::vector<std::string> error_msgs; local
167 dex_files = linker->OpenDexFilesFromOat(sourceName.c_str(), outputName.c_str(), &error_msgs);
182 CHECK(!error_msgs.empty());
185 auto it = error_msgs.begin();
186 auto itEnd = error_msgs.end();
/art/runtime/
H A Doat_file_assistant_test.cc931 std::vector<std::string> error_msgs; local
932 dex_files = linker->OpenDexFilesFromOat(dex_location_.c_str(), oat_location_.c_str(), &error_msgs);
933 CHECK(!dex_files.empty()) << Join(error_msgs, '\n');
H A Dclass_linker.cc904 std::vector<std::string>* error_msgs) {
905 CHECK(error_msgs != nullptr);
982 error_msgs->push_back("Failed to open dex files from "
994 error_msgs->push_back("Failed to open dex files from " + std::string(dex_location));
997 error_msgs->push_back("Fallback mode disabled, skipping dex files.");
1000 error_msgs->push_back("No original dex files found for dex location "
902 OpenDexFilesFromOat( const char* dex_location, const char* oat_location, std::vector<std::string>* error_msgs) argument

Completed in 87 milliseconds