Home
last modified time | relevance | path

Searched refs:error_msgs (Results 1 – 4 of 4) sorted by relevance

/art/runtime/
Doat_file_manager.h101 /*out*/ std::vector<std::string>* error_msgs)
118 /*out*/ std::vector<std::string>* error_msgs)
158 /*out*/ std::vector<std::string>* error_msgs)
Doat_file_manager.cc459 std::vector<std::string>* error_msgs) { in OpenDexFilesFromOat() argument
462 CHECK(error_msgs != nullptr); in OpenDexFilesFromOat()
619 error_msgs->push_back("Failed to open dex files from " + source_oat_file->GetLocation()); in OpenDexFilesFromOat()
642 error_msgs->push_back("Failed to open dex files from " + std::string(dex_location) in OpenDexFilesFromOat()
646 error_msgs->push_back("Fallback mode disabled, skipping dex files."); in OpenDexFilesFromOat()
651 error_msgs->push_back(msg); in OpenDexFilesFromOat()
723 std::vector<std::string>* error_msgs) { in OpenDexFilesFromOat() argument
729 error_msgs); in OpenDexFilesFromOat()
731 if (error_msgs->empty()) { in OpenDexFilesFromOat()
736 error_msgs->push_back("Failed to make dex file " + dex_file->GetLocation() + " read-only"); in OpenDexFilesFromOat()
[all …]
Doat_file_assistant_test.cc1224 std::vector<std::string> error_msgs; in Run() local
1241 &error_msgs); in Run()
1242 CHECK(!dex_files.empty()) << android::base::Join(error_msgs, '\n'); in Run()
1448 std::vector<std::string> error_msgs; in TEST_F() local
1456 &error_msgs); in TEST_F()
1457 ASSERT_EQ(dex_files.size(), 1u) << android::base::Join(error_msgs, "\n"); in TEST_F()
1474 &error_msgs); in TEST_F()
1475 ASSERT_EQ(dex_files.size(), 1u) << android::base::Join(error_msgs, "\n"); in TEST_F()
1502 std::vector<std::string> error_msgs; in TEST_F() local
1510 &error_msgs); in TEST_F()
[all …]
/art/runtime/native/
Ddalvik_system_DexFile.cc173 const std::vector<std::string>& error_msgs) { in CreateCookieFromOatFileManagerResult() argument
177 CHECK(!error_msgs.empty()); in CreateCookieFromOatFileManagerResult()
180 auto it = error_msgs.begin(); in CreateCookieFromOatFileManagerResult()
181 auto itEnd = error_msgs.end(); in CreateCookieFromOatFileManagerResult()
293 std::vector<std::string> error_msgs; in DexFile_openInMemoryDexFilesNative() local
300 /*out*/ &error_msgs); in DexFile_openInMemoryDexFilesNative()
301 return CreateCookieFromOatFileManagerResult(env, dex_files, oat_file, error_msgs); in DexFile_openInMemoryDexFilesNative()
317 std::vector<std::string> error_msgs; in DexFile_openDexFileNative() local
324 /*out*/ &error_msgs); in DexFile_openDexFileNative()
325 return CreateCookieFromOatFileManagerResult(env, dex_files, oat_file, error_msgs); in DexFile_openDexFileNative()