Home
last modified time | relevance | path

Searched refs:err_msg (Results 1 – 3 of 3) sorted by relevance

/art/libdexfile/external/
Ddex_file_supp.cc49 bool TryLoadLibdexfileExternal([[maybe_unused]] std::string* err_msg) { in FOR_ALL_DLFUNCS()
54 *err_msg = "Dex file support not available."; in FOR_ALL_DLFUNCS()
74 *err_msg = dlerror(); in FOR_ALL_DLFUNCS()
81 *err_msg = dlerror(); \ in FOR_ALL_DLFUNCS()
100 if (std::string err_msg; !TryLoadLibdexfileExternal(&err_msg)) { in LoadLibdexfileExternal() local
101 LOG_ALWAYS_FATAL("%s", err_msg.c_str()); in LoadLibdexfileExternal()
/art/runtime/gc/space/
Dimage_space.cc2372 std::string* err_msg = (i == 0 || validate) ? error_msg : &local_error_msg; in LoadOrValidate() local
2374 if (!filename_fn(base_location, &base_filename, err_msg) || in LoadOrValidate()
2375 !ReadHeader(base_location, base_filename, bcp_index, err_msg)) { in LoadOrValidate()
2431 std::string err_msg; // Ignored. in LoadOrValidate() local
2433 if (filename_fn(base_location, &base_filename, &err_msg) && in LoadOrValidate()
2434 ReadHeader(base_location, base_filename, bcp_pos, &err_msg)) { in LoadOrValidate()
2469 /*out*/std::string* err_msg ATTRIBUTE_UNUSED) { in LoadOrValidateFromSystem()
2482 /*out*/std::string* err_msg) { in LoadOrValidateFromDalvikCache() argument
2483 return GetDalvikCacheFilename(location.c_str(), dalvik_cache.c_str(), filename, err_msg); in LoadOrValidateFromDalvikCache()
/art/openjdkjvmti/
Dti_redefine.cc637 std::string err_msg; in StructurallyRedefineClassDirect() local
643 &err_msg); in StructurallyRedefineClassDirect()
645 JVMTI_LOG(WARNING, env) << "Failed structural redefinition: " << err_msg; in StructurallyRedefineClassDirect()