Home
last modified time | relevance | path

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

/aosp12/art/runtime/
H A 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()
431 std::vector<std::string>* error_msgs) { in OpenDexFilesFromOat() argument
437 error_msgs); in OpenDexFilesFromOat()
439 if (error_msgs->empty()) { in OpenDexFilesFromOat()
449 if (!error_msgs->empty()) { in OpenDexFilesFromOat()
461 std::vector<std::string>* error_msgs) { in OpenDexFilesFromOat_Impl() argument
464 DCHECK(error_msgs != nullptr); in OpenDexFilesFromOat_Impl()
510 error_msgs->push_back("Failed to open dex files from memory: " + error_msg); in OpenDexFilesFromOat_Impl()
[all …]
H A 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)
H A 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()
1534 &error_msgs); in TEST_F()
1566 std::vector<std::string> error_msgs; in TEST_F() local
1574 &error_msgs); in TEST_F()
1603 &error_msgs); in TEST_F()
1638 std::vector<std::string> error_msgs; in TEST_F() local
[all …]
/aosp12/art/runtime/native/
H A 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()
/aosp12/art/runtime/gc/space/
H A 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()