Searched refs:reason (Results 1 – 11 of 11) sorted by relevance
/art/runtime/ |
D | thread_pool.cc | 36 const char* reason = "new thread pool worker thread"; in ThreadPoolWorker() local 38 CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), reason); in ThreadPoolWorker() 39 CHECK_PTHREAD_CALL(pthread_attr_setstack, (&attr, stack_->Begin(), stack_->Size()), reason); in ThreadPoolWorker() 40 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Callback, this), reason); in ThreadPoolWorker() 41 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), reason); in ThreadPoolWorker()
|
D | common_runtime_test.h | 134 static void Hook(void* data, const std::string& reason);
|
D | common_runtime_test.cc | 382 void CheckJniAbortCatcher::Hook(void* data, const std::string& reason) { in Hook() argument 384 *reinterpret_cast<std::string*>(data) += reason; in Hook()
|
D | jni_internal.h | 105 void (*check_jni_abort_hook)(void* data, const std::string& reason);
|
D | runtime.cc | 927 std::string reason; in InitNativeMethods() local 931 if (!instance_->java_vm_->LoadNativeLibrary(mapped_name, class_loader, &reason)) { in InitNativeMethods() 932 LOG(FATAL) << "LoadNativeLibrary failed for \"" << mapped_name << "\": " << reason; in InitNativeMethods()
|
D | debugger.h | 629 static void DdmSendHeapInfo(HpifWhen reason)
|
D | debugger.cc | 4096 void Dbg::DdmSendHeapInfo(HpifWhen reason) { in DdmSendHeapInfo() argument 4098 if (reason == gDdmHpifWhen) { in DdmSendHeapInfo() 4127 JDWP::Append1BE(bytes, reason); in DdmSendHeapInfo()
|
/art/dex2oat/ |
D | dex2oat.cc | 629 message += reason; \ 641 const char* reason = "dex2oat watch dog thread startup"; in WatchDog() local 642 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_init, (&mutex_, nullptr), reason); in WatchDog() 643 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_init, (&cond_, nullptr), reason); in WatchDog() 644 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_attr_init, (&attr_), reason); in WatchDog() 645 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_create, (&pthread_, &attr_, &CallBack, this), reason); in WatchDog() 646 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_attr_destroy, (&attr_), reason); in WatchDog() 652 const char* reason = "dex2oat watch dog thread shutdown"; in ~WatchDog() local 653 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_lock, (&mutex_), reason); in ~WatchDog() 655 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_signal, (&cond_), reason); in ~WatchDog() [all …]
|
/art/runtime/gc/space/ |
D | image_space.cc | 477 std::string reason; in Create() local 482 reason = "Image dex2oat disabled by -Xnoimage-dex2oat."; in Create() 484 } else if (!ImageCreationAllowed(is_global_cache, &reason)) { in Create() 489 success = RelocateImage(image_location, cache_filename.c_str(), image_isa, &reason); in Create() 498 cache_filename.c_str(), reason.c_str()); in Create()
|
/art/compiler/jni/ |
D | jni_compiler_test.cc | 229 std::string reason; in JNI_TEST() local 234 Runtime::Current()->GetJavaVM()->LoadNativeLibrary("", class_loader, &reason)) << reason; in JNI_TEST() 248 std::string reason; in JNI_TEST() local 253 Runtime::Current()->GetJavaVM()->LoadNativeLibrary("", class_loader, &reason)) << reason; in JNI_TEST()
|
/art/ |
D | NOTICE | 186 incurred by, or claims asserted against, such Contributor by reason
|