Searched refs:error_msgs (Results 1 – 5 of 5) sorted by relevance
/art/runtime/ |
D | oat_file_manager.h | 99 /*out*/ std::vector<std::string>* error_msgs) 116 /*out*/ std::vector<std::string>* error_msgs) 146 /*out*/ std::vector<std::string>* error_msgs)
|
D | oat_file_manager.cc | 173 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 …]
|
D | oat_file_assistant_test.cc | 1261 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/ |
D | dalvik_system_DexFile.cc | 175 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/ |
D | image_space.cc | 3195 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()
|