Lines Matching refs:detail
507 void* FindNativeMethod(mirror::ArtMethod* m, std::string& detail) in FindNativeMethod() argument
537 detail += "No implementation found for "; in FindNativeMethod()
538 detail += PrettyMethod(m); in FindNativeMethod()
539 detail += " (tried " + jni_short_name + " and " + jni_long_name + ")"; in FindNativeMethod()
540 LOG(ERROR) << detail; in FindNativeMethod()
3227 std::string* detail) { in LoadNativeLibrary() argument
3228 detail->clear(); in LoadNativeLibrary()
3246 StringAppendF(detail, "Shared library \"%s\" already opened by " in LoadNativeLibrary()
3249 LOG(WARNING) << detail; in LoadNativeLibrary()
3255 StringAppendF(detail, "JNI_OnLoad failed on a previous attempt " in LoadNativeLibrary()
3290 *detail = dlerror(); in LoadNativeLibrary()
3291 LOG(ERROR) << "dlopen(\"" << path << "\", RTLD_LAZY) failed: " << *detail; in LoadNativeLibrary()
3352 StringAppendF(detail, "JNI_ERR returned from JNI_OnLoad in \"%s\"", path.c_str()); in LoadNativeLibrary()
3354 StringAppendF(detail, "Bad JNI version returned from JNI_OnLoad in \"%s\": %d", in LoadNativeLibrary()
3385 std::string detail; in FindCodeForNativeMethod() local
3390 native_method = libraries->FindNativeMethod(m, detail); in FindCodeForNativeMethod()
3395 self->ThrowNewException(throw_location, "Ljava/lang/UnsatisfiedLinkError;", detail.c_str()); in FindCodeForNativeMethod()