Home
last modified time | relevance | path

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

/art/runtime/
Doat_file_manager.h99 /*out*/ std::vector<std::string>* error_msgs)
116 /*out*/ std::vector<std::string>* error_msgs)
146 /*out*/ std::vector<std::string>* error_msgs)
Doat_file_manager.cc173 std::vector<std::string>* error_msgs) { in OpenDexFilesFromOat() argument
176 CHECK(error_msgs != nullptr); in OpenDexFilesFromOat()
333 error_msgs->push_back("Failed to open dex files from " + odex_location); in OpenDexFilesFromOat()
400 error_msgs->push_back("Failed to open dex files from " + std::string(dex_location) in OpenDexFilesFromOat()
431 std::vector<std::string>* error_msgs) { in OpenDexFilesFromOat() argument
437 error_msgs); in OpenDexFilesFromOat()
439 if (error_msgs->empty()) { in OpenDexFilesFromOat()
444 error_msgs->push_back("Failed to make dex file " + dex_file->GetLocation() + " read-only"); in OpenDexFilesFromOat()
449 if (!error_msgs->empty()) { in OpenDexFilesFromOat()
461 std::vector<std::string>* error_msgs) { in OpenDexFilesFromOat_Impl() argument
[all …]
Doat_file_assistant_test.cc1261 std::vector<std::string> error_msgs; in Run() local
1278 &error_msgs); in Run()
1279 CHECK(!dex_files.empty()) << android::base::Join(error_msgs, '\n'); in Run()
1507 std::vector<std::string> error_msgs; in TEST_F() local
1515 &error_msgs); in TEST_F()
1516 ASSERT_EQ(dex_files.size(), 1u) << android::base::Join(error_msgs, "\n"); in TEST_F()
1534 &error_msgs); in TEST_F()
1535 ASSERT_EQ(dex_files.size(), 1u) << android::base::Join(error_msgs, "\n"); in TEST_F()
1566 std::vector<std::string> error_msgs; in TEST_F() local
1574 &error_msgs); in TEST_F()
[all …]
/art/runtime/native/
Ddalvik_system_DexFile.cc175 const std::vector<std::string>& error_msgs) { in CreateCookieFromOatFileManagerResult() argument
179 CHECK(!error_msgs.empty()); in CreateCookieFromOatFileManagerResult()
182 auto it = error_msgs.begin(); in CreateCookieFromOatFileManagerResult()
183 auto itEnd = error_msgs.end(); in CreateCookieFromOatFileManagerResult()
295 std::vector<std::string> error_msgs; in DexFile_openInMemoryDexFilesNative() local
302 /*out*/ &error_msgs); in DexFile_openInMemoryDexFilesNative()
303 return CreateCookieFromOatFileManagerResult(env, dex_files, oat_file, error_msgs); in DexFile_openInMemoryDexFilesNative()
319 std::vector<std::string> error_msgs; in DexFile_openDexFileNative() local
326 /*out*/ &error_msgs); in DexFile_openDexFileNative()
327 return CreateCookieFromOatFileManagerResult(env, dex_files, oat_file, error_msgs); in DexFile_openDexFileNative()
/art/runtime/gc/space/
Dimage_space.cc3195 std::vector<std::string> error_msgs; in LoadBootImage() local
3205 error_msgs.push_back(error_msg); in LoadBootImage()
3210 for (const auto& msg : error_msgs) { in LoadBootImage()