Home
last modified time | relevance | path

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

/art/runtime/oat/
Doat_file_manager.h102 /*out*/ std::vector<std::string>* error_msgs)
119 /*out*/ std::vector<std::string>* error_msgs)
155 /*out*/ std::vector<std::string>* error_msgs)
Doat_file_manager.cc200 std::vector<std::string>* error_msgs) { in OpenDexFilesFromOat() argument
203 CHECK(error_msgs != nullptr); in OpenDexFilesFromOat()
396 error_msgs->push_back("Failed to open dex files from " + odex_location); in OpenDexFilesFromOat()
478 error_msgs->push_back("Failed to open dex files from " + std::string(dex_location) in OpenDexFilesFromOat()
509 std::vector<std::string>* error_msgs) { in OpenDexFilesFromOat() argument
515 error_msgs); in OpenDexFilesFromOat()
517 if (error_msgs->empty()) { in OpenDexFilesFromOat()
522 error_msgs->push_back("Failed to make dex file " + dex_file->GetLocation() + " read-only"); in OpenDexFilesFromOat()
527 if (!error_msgs->empty()) { in OpenDexFilesFromOat()
539 std::vector<std::string>* error_msgs) { in OpenDexFilesFromOat_Impl() argument
[all …]
Doat_file_assistant_test.cc1557 std::vector<std::string> error_msgs; in Run() local
1574 &error_msgs); in Run()
1575 CHECK(!dex_files.empty()) << android::base::Join(error_msgs, '\n'); in Run()
2326 std::vector<std::string> error_msgs; in TEST_F() local
2334 &error_msgs); in TEST_F()
2335 ASSERT_EQ(dex_files.size(), 1u) << android::base::Join(error_msgs, "\n"); in TEST_F()
2353 &error_msgs); in TEST_F()
2354 ASSERT_EQ(dex_files.size(), 1u) << android::base::Join(error_msgs, "\n"); in TEST_F()
2385 std::vector<std::string> error_msgs; in TEST_F() local
2393 &error_msgs); in TEST_F()
[all …]
/art/runtime/native/
Ddalvik_system_DexFile.cc185 const std::vector<std::string>& error_msgs) { in CreateCookieFromOatFileManagerResult() argument
189 CHECK(!error_msgs.empty()); in CreateCookieFromOatFileManagerResult()
192 auto it = error_msgs.begin(); in CreateCookieFromOatFileManagerResult()
193 auto itEnd = error_msgs.end(); in CreateCookieFromOatFileManagerResult()
305 std::vector<std::string> error_msgs; in DexFile_openInMemoryDexFilesNative() local
312 /*out*/ &error_msgs); in DexFile_openInMemoryDexFilesNative()
313 return CreateCookieFromOatFileManagerResult(env, dex_files, oat_file, error_msgs); in DexFile_openInMemoryDexFilesNative()
391 std::vector<std::string> error_msgs; in DexFile_openDexFileNative() local
398 /*out*/ &error_msgs); in DexFile_openDexFileNative()
399 return CreateCookieFromOatFileManagerResult(env, dex_files, oat_file, error_msgs); in DexFile_openDexFileNative()
/art/dexopt_chroot_setup/
Ddexopt_chroot_setup.cc284 std::vector<std::string> error_msgs; in Mount() local
300 error_msgs.push_back(ART_FORMAT("Tried '{}': {}", filesystem, strerror(errno))); in Mount()
310 return Errorf("Failed to mount '{}' at '{}':\n{}", block_device, target, Join(error_msgs, '\n')); in Mount()