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.cc49 const char* reason = "new thread pool worker thread"; local
51 CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), reason);
52 CHECK_PTHREAD_CALL(pthread_attr_setstack, (&attr, stack_->Begin(), stack_->Size()), reason);
53 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Callback, this), reason);
54 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), reason);
H A Dcommon_runtime_test.h199 static void Hook(void* data, const std::string& reason);
H A Djava_vm_ext.h183 // Used for testing. By default, we'll LOG(FATAL) the reason.
184 void (*check_jni_abort_hook_)(void* data, const std::string& reason);
H A Dcommon_runtime_test.cc628 void CheckJniAbortCatcher::Hook(void* data, const std::string& reason) { argument
630 *reinterpret_cast<std::string*>(data) += reason;
H A Ddebugger.h680 static void DdmSendHeapInfo(HpifWhen reason)
H A Ddebugger.cc3882 * However, for compatibility reason with older versions of debuggers (like Eclipse), we
4452 void Dbg::DdmSendHeapInfo(HpifWhen reason) { argument
4454 if (reason == gDdmHpifWhen) {
4471 * [u1]: capture reason (same as 'when' value from server)
4483 JDWP::Append1BE(bytes, reason);
4945 * The chief reason for using a string table here is to keep the size of
/art/dex2oat/
H A Ddex2oat.cc402 message += reason; \
414 const char* reason = "dex2oat watch dog thread startup"; local
415 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_init, (&mutex_, nullptr), reason);
416 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_init, (&cond_, nullptr), reason);
417 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_attr_init, (&attr_), reason);
418 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_create, (&pthread_, &attr_, &CallBack, this), reason);
419 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_attr_destroy, (&attr_), reason);
425 const char* reason = "dex2oat watch dog thread shutdown"; local
426 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_lock, (&mutex_), reason);
428 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_signal, (&cond_), reason);
460 const char* reason = "dex2oat watch dog thread waiting"; local
[all...]
/art/runtime/gc/space/
H A Dimage_space.cc413 std::string reason; local
418 reason = "Image dex2oat disabled by -Xnoimage-dex2oat.";
420 } else if (!ImageCreationAllowed(is_global_cache, &reason)) {
431 reason = "Should not have to patch secondary image.";
436 success = RelocateImage(image_location, cache_filename.c_str(), image_isa, &reason);
445 cache_filename.c_str(), reason.c_str());
/art/compiler/jni/
H A Djni_compiler_test.cc230 std::string reason; local
232 LoadNativeLibrary(env_, "", class_loader_, library_search_path_, &reason))
233 << reason;
245 std::string reason; local
247 LoadNativeLibrary(env_, "", class_loader_, library_search_path_, &reason))
248 << reason;

Completed in 151 milliseconds