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)
156 /*out*/ std::vector<std::string>* error_msgs)
Doat_file_manager.cc452 std::vector<std::string>* error_msgs) { in OpenDexFilesFromOat() argument
455 CHECK(error_msgs != nullptr); in OpenDexFilesFromOat()
614 error_msgs->push_back("Failed to open dex files from " + source_oat_file->GetLocation()); in OpenDexFilesFromOat()
637 error_msgs->push_back("Failed to open dex files from " + std::string(dex_location) in OpenDexFilesFromOat()
641 error_msgs->push_back("Fallback mode disabled, skipping dex files."); in OpenDexFilesFromOat()
644 error_msgs->push_back("No original dex files found for dex location " in OpenDexFilesFromOat()
683 std::vector<std::string>* error_msgs) { in OpenDexFilesFromOat() argument
689 error_msgs); in OpenDexFilesFromOat()
691 if (error_msgs->empty()) { in OpenDexFilesFromOat()
696 error_msgs->push_back("Failed to make dex file " + dex_file->GetLocation() + " read-only"); in OpenDexFilesFromOat()
[all …]
Doat_file_assistant_test.cc1197 std::vector<std::string> error_msgs; in Run() local
1214 &error_msgs); in Run()
1215 CHECK(!dex_files.empty()) << android::base::Join(error_msgs, '\n'); in Run()
1400 std::vector<std::string> error_msgs; in TEST_F() local
1408 &error_msgs); in TEST_F()
1426 &error_msgs); in TEST_F()
1454 std::vector<std::string> error_msgs; in TEST_F() local
1462 &error_msgs); in TEST_F()
1490 &error_msgs); in TEST_F()
/art/runtime/native/
Ddalvik_system_DexFile.cc172 const std::vector<std::string>& error_msgs) { in CreateCookieFromOatFileManagerResult() argument
176 CHECK(!error_msgs.empty()); in CreateCookieFromOatFileManagerResult()
179 auto it = error_msgs.begin(); in CreateCookieFromOatFileManagerResult()
180 auto itEnd = error_msgs.end(); in CreateCookieFromOatFileManagerResult()
292 std::vector<std::string> error_msgs; in DexFile_openInMemoryDexFilesNative() local
299 /*out*/ &error_msgs); in DexFile_openInMemoryDexFilesNative()
300 return CreateCookieFromOatFileManagerResult(env, dex_files, oat_file, error_msgs); in DexFile_openInMemoryDexFilesNative()
316 std::vector<std::string> error_msgs; in DexFile_openDexFileNative() local
323 /*out*/ &error_msgs); in DexFile_openDexFileNative()
324 return CreateCookieFromOatFileManagerResult(env, dex_files, oat_file, error_msgs); in DexFile_openDexFileNative()