Searched refs:reason (Results 1 - 10 of 10) sorted by relevance

/art/runtime/
H A Djava_vm_ext_test.cc88 const char* reason = __PRETTY_FUNCTION__; local
92 nullptr), reason);
94 CHECK_PTHREAD_CALL(pthread_join, (pthread, &ret_val), reason);
100 const char* reason = __PRETTY_FUNCTION__; local
104 nullptr), reason);
106 CHECK_PTHREAD_CALL(pthread_join, (pthread, &ret_val), reason);
113 const char* reason = __PRETTY_FUNCTION__; local
116 CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), reason);
117 CHECK_PTHREAD_CALL(pthread_attr_setstacksize, (&attr, PTHREAD_STACK_MIN), reason);
119 nullptr), reason);
[all...]
H A Dthread_pool.cc53 const char* reason = "new thread pool worker thread"; local
55 CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), reason);
56 CHECK_PTHREAD_CALL(pthread_attr_setstack, (&attr, stack_->Begin(), stack_->Size()), reason);
57 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Callback, this), reason);
58 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), reason);
H A Druntime_callbacks_test.cc198 const char* reason = "ThreadLifecycleCallback test thread"; local
200 CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), reason);
201 CHECK_PTHREAD_CALL(pthread_attr_setstack, (&attr, stack->Begin(), stack->Size()), reason);
208 reason);
209 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), reason);
H A Dcommon_runtime_test.h208 static void Hook(void* data, const std::string& reason);
H A Djava_vm_ext.h213 // Used for testing. By default, we'll LOG(FATAL) the reason.
214 void (*check_jni_abort_hook_)(void* data, const std::string& reason);
H A Dcommon_runtime_test.cc725 void CheckJniAbortCatcher::Hook(void* data, const std::string& reason) { argument
727 *reinterpret_cast<std::string*>(data) += reason;
H A Ddebugger.h683 static void DdmSendHeapInfo(HpifWhen reason)
H A Ddebugger.cc3930 * However, for compatibility reason with older versions of debuggers (like Eclipse), we
4506 void Dbg::DdmSendHeapInfo(HpifWhen reason) { argument
4508 if (reason == gDdmHpifWhen) {
4525 * [u1]: capture reason (same as 'when' value from server)
4537 JDWP::Append1BE(bytes, reason);
5000 * The chief reason for using a string table here is to keep the size of
/art/dex2oat/
H A Ddex2oat.cc410 message += reason; \
419 const char* reason = "dex2oat watch dog thread startup"; local
420 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_init, (&mutex_, nullptr), reason);
423 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_condattr_init, (&condattr), reason);
424 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_condattr_setclock, (&condattr, CLOCK_MONOTONIC), reason);
425 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_init, (&cond_, &condattr), reason);
426 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_condattr_destroy, (&condattr), reason);
428 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_attr_init, (&attr_), reason);
429 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_create, (&pthread_, &attr_, &CallBack, this), reason);
430 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_attr_destroy, (&attr_), reason);
433 const char* reason = "dex2oat watch dog thread shutdown"; local
490 const char* reason = "dex2oat watch dog thread waiting"; local
[all...]
/art/compiler/jni/
H A Djni_compiler_test.cc658 std::string reason; local
660 LoadNativeLibrary(env_, "", class_loader_, library_search_path_, &reason))
661 << reason;
674 std::string reason; local
676 LoadNativeLibrary(env_, "", class_loader_, library_search_path_, &reason))
677 << reason;

Completed in 167 milliseconds