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

/art/runtime/
H A Dthread_pool.cc33 const char* reason = "new thread pool worker thread"; local
35 CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), reason);
36 CHECK_PTHREAD_CALL(pthread_attr_setstacksize, (&attr, stack_size), reason);
37 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Callback, this), reason);
38 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), reason);
H A Djni_internal.h106 // Used for testing. By default, we'll LOG(FATAL) the reason.
107 void (*check_jni_abort_hook)(void* data, const std::string& reason);
H A Dcommon_test.h558 static void Hook(void* data, const std::string& reason) { argument
560 *reinterpret_cast<std::string*>(data) += reason;
H A Druntime.cc963 std::string reason; local
965 if (!instance_->java_vm_->LoadNativeLibrary(mapped_name, NULL, reason)) {
966 LOG(FATAL) << "LoadNativeLibrary failed for \"" << mapped_name << "\": " << reason; local
H A Ddebugger.h416 static void DdmSendHeapInfo(HpifWhen reason)
H A Ddebugger.cc2457 // TODO: there's no theoretical reason why we couldn't support single-stepping
3128 void Dbg::DdmSendHeapInfo(HpifWhen reason) { argument
3130 if (reason == gDdmHpifWhen) {
3147 * [u1]: capture reason (same as 'when' value from server)
3159 JDWP::Append1BE(bytes, reason);
3674 * The chief reason for using a string table here is to keep the size of
/art/dex2oat/
H A Ddex2oat.cc448 message += reason; \
460 const char* reason = "dex2oat watch dog thread startup"; local
461 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_init, (&mutex_, NULL), reason);
462 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_init, (&cond_, NULL), reason);
463 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_attr_init, (&attr_), reason);
464 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_create, (&pthread_, &attr_, &CallBack, this), reason);
465 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_attr_destroy, (&attr_), reason);
471 const char* reason = "dex2oat watch dog thread shutdown"; local
472 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_lock, (&mutex_), reason);
474 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_signal, (&cond_), reason);
521 const char* reason = "dex2oat watch dog thread waiting"; local
[all...]
/art/compiler/jni/
H A Djni_compiler_test.cc152 std::string reason; local
155 reason)) << reason;
167 std::string reason; local
170 reason)) << reason;

Completed in 1674 milliseconds