Home
last modified time | relevance | path

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

/art/runtime/
Doat_file_manager.h101 /*out*/ std::vector<std::string>* error_msgs)
118 /*out*/ std::vector<std::string>* error_msgs)
149 /*out*/ std::vector<std::string>* error_msgs)
Doat_file_manager.cc217 std::vector<std::string>* error_msgs) { in OpenDexFilesFromOat() argument
220 CHECK(error_msgs != nullptr); in OpenDexFilesFromOat()
346 error_msgs->push_back("Failed to open dex files from " + oat_file->GetLocation()); in OpenDexFilesFromOat()
411 error_msgs->push_back("Failed to open dex files from " + std::string(dex_location) in OpenDexFilesFromOat()
448 std::vector<std::string>* error_msgs) { in OpenDexFilesFromOat() argument
454 error_msgs); in OpenDexFilesFromOat()
456 if (error_msgs->empty()) { in OpenDexFilesFromOat()
461 error_msgs->push_back("Failed to make dex file " + dex_file->GetLocation() + " read-only"); in OpenDexFilesFromOat()
466 if (!error_msgs->empty()) { in OpenDexFilesFromOat()
478 std::vector<std::string>* error_msgs) { in OpenDexFilesFromOat_Impl() argument
[all …]
Doat_file_assistant_test.cc1121 std::vector<std::string> error_msgs; in Run() local
1138 &error_msgs); in Run()
1139 CHECK(!dex_files.empty()) << android::base::Join(error_msgs, '\n'); in Run()
1346 std::vector<std::string> error_msgs; in TEST_F() local
1354 &error_msgs); in TEST_F()
1355 ASSERT_EQ(dex_files.size(), 1u) << android::base::Join(error_msgs, "\n"); in TEST_F()
1373 &error_msgs); in TEST_F()
1374 ASSERT_EQ(dex_files.size(), 1u) << android::base::Join(error_msgs, "\n"); in TEST_F()
1402 std::vector<std::string> error_msgs; in TEST_F() local
1410 &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()
/art/runtime/gc/space/
Dimage_space.cc3615 std::vector<std::string> error_msgs; in LoadBootImage() local
3627 error_msgs.push_back(local_error_msg); in LoadBootImage()
3683 error_msgs.push_back(StringPrintf("Cannot compile image to %s: %s", in LoadBootImage()
3696 for (const auto& msg : error_msgs) { in LoadBootImage()