Searched defs:reason (Results 1 - 8 of 8) 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.cc37 const char* reason = "new thread pool worker thread"; local
39 CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), reason);
40 CHECK_PTHREAD_CALL(pthread_attr_setstack, (&attr, stack_->Begin(), stack_->Size()), reason);
41 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Callback, this), reason);
42 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), reason);
H A Dcommon_runtime_test.cc590 void CheckJniAbortCatcher::Hook(void* data, const std::string& reason) { argument
592 *reinterpret_cast<std::string*>(data) += reason;
H A Druntime.cc1147 std::string reason; local
1148 if (!java_vm_->LoadNativeLibrary(env, "libjavacore.so", nullptr, &reason)) {
1149 LOG(FATAL) << "LoadNativeLibrary failed for \"libjavacore.so\": " << reason;
H A Ddebugger.cc4431 void Dbg::DdmSendHeapInfo(HpifWhen reason) { argument
4433 if (reason == gDdmHpifWhen) {
4450 * [u1]: capture reason (same as 'when' value from server)
4462 JDWP::Append1BE(bytes, reason);
5071 * The chief reason for using a string table here is to keep the size of
/art/runtime/gc/space/
H A Dimage_space.cc513 std::string reason; local
518 reason = "Image dex2oat disabled by -Xnoimage-dex2oat.";
520 } else if (!ImageCreationAllowed(is_global_cache, &reason)) {
525 success = RelocateImage(image_location, cache_filename.c_str(), image_isa, &reason);
534 cache_filename.c_str(), reason.c_str());
/art/dex2oat/
H A Ddex2oat.cc358 message += reason; \
370 const char* reason = "dex2oat watch dog thread startup"; local
371 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_init, (&mutex_, nullptr), reason);
372 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_init, (&cond_, nullptr), reason);
373 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_attr_init, (&attr_), reason);
374 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_create, (&pthread_, &attr_, &CallBack, this), reason);
375 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_attr_destroy, (&attr_), reason);
381 const char* reason = "dex2oat watch dog thread shutdown"; local
382 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_lock, (&mutex_), reason);
384 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_signal, (&cond_), reason);
416 const char* reason = "dex2oat watch dog thread waiting"; local
[all...]
/art/compiler/jni/
H A Djni_compiler_test.cc221 std::string reason; local
222 ASSERT_TRUE(Runtime::Current()->GetJavaVM()->LoadNativeLibrary(env_, "", class_loader_, &reason))
223 << reason;
235 std::string reason; local
236 ASSERT_TRUE(Runtime::Current()->GetJavaVM()->LoadNativeLibrary(env_, "", class_loader_, &reason))
237 << reason;

Completed in 183 milliseconds