Searched defs:reason (Results 1 - 12 of 12) sorted by relevance

/art/runtime/
H A Djava_vm_ext_test.cc89 const char* reason = __PRETTY_FUNCTION__; local
93 nullptr), reason);
95 CHECK_PTHREAD_CALL(pthread_join, (pthread, &ret_val), reason);
101 const char* reason = __PRETTY_FUNCTION__; local
105 nullptr), reason);
107 CHECK_PTHREAD_CALL(pthread_join, (pthread, &ret_val), reason);
114 const char* reason = __PRETTY_FUNCTION__; local
117 CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), reason);
118 CHECK_PTHREAD_CALL(pthread_attr_setstacksize, (&attr, PTHREAD_STACK_MIN), reason);
120 nullptr), reason);
[all...]
H A Druntime_callbacks_test.cc202 const char* reason = "ThreadLifecycleCallback test thread"; local
204 CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), reason);
205 CHECK_PTHREAD_CALL(pthread_attr_setstack, (&attr, stack->Begin(), stack->Size()), reason);
212 reason);
213 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), reason);
H A Dthread-inl.h358 SuspendReason reason) {
363 if (LIKELY(ModifySuspendCountInternal(self, delta, suspend_barrier, reason))) {
382 return ModifySuspendCountInternal(self, delta, suspend_barrier, reason);
355 ModifySuspendCount(Thread* self, int delta, AtomicInteger* suspend_barrier, SuspendReason reason) argument
H A Dthread_pool.cc58 const char* reason = "new thread pool worker thread"; local
60 CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), reason);
61 CHECK_PTHREAD_CALL(pthread_attr_setstack, (&attr, stack_->Begin(), stack_->Size()), reason);
62 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Callback, this), reason);
63 CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), reason);
H A Dcommon_runtime_test.cc772 void CheckJniAbortCatcher::Hook(void* data, const std::string& reason) { argument
774 *reinterpret_cast<std::string*>(data) += reason;
H A Doat_file_assistant.cc1331 const char* reason = oat_file->GetCompilationReason(); local
1332 *out_compilation_reason = reason == nullptr ? "unknown" : reason;
H A Dthread_list.cc702 SuspendReason reason) {
732 if (reason == SuspendReason::kForDebugger) {
742 bool updated = thread->ModifySuspendCount(self, +1, &pending_threads, reason);
842 bool ThreadList::Resume(Thread* thread, SuspendReason reason) { argument
848 VLOG(threads) << "Resume(" << reinterpret_cast<void*>(thread) << ") starting..." << reason;
867 if (UNLIKELY(!thread->ModifySuspendCount(self, -1, nullptr, reason))) {
903 SuspendReason reason,
931 reason);
958 bool updated = suspended_thread->ModifySuspendCount(self, +1, nullptr, reason);
994 reason);
699 SuspendAllInternal(Thread* self, Thread* ignore1, Thread* ignore2, SuspendReason reason) argument
901 SuspendThreadByPeer(jobject peer, bool request_suspension, SuspendReason reason, bool* timed_out) argument
1022 SuspendThreadByThreadId(uint32_t thread_id, SuspendReason reason, bool* timed_out) argument
[all...]
H A Dthread.cc1220 SuspendReason reason) {
1223 << reason << " " << delta << " " << tls32_.debug_suspend_count << " " << this;
1232 if (UNLIKELY(reason == SuspendReason::kForUserCode)) {
1268 switch (reason) {
1217 ModifySuspendCountInternal(Thread* self, int delta, AtomicInteger* suspend_barrier, SuspendReason reason) argument
H A Ddebugger.cc4019 * However, for compatibility reason with older versions of debuggers (like Eclipse), we
4611 void Dbg::DdmSendHeapInfo(HpifWhen reason) { argument
4613 if (reason == gDdmHpifWhen) {
4630 * [u1]: capture reason (same as 'when' value from server)
4642 JDWP::Append1BE(bytes, reason);
5173 * The chief reason for using a string table here is to keep the size of
/art/test/710-varhandle-creation/src/
H A DMain.java226 public static void fail(String reason) { argument
227 throw new RuntimeException("FAIL: " + reason);
2213 protected static void fail(String reason) { argument
2214 Main.fail(reason);
/art/dex2oat/
H A Ddex2oat.cc471 UsageError(" --compilation-reason=<string>: optional metadata specifying the reason for");
475 UsageError(" Example: --compilation-reason=install");
494 message += reason; \
503 const char* reason = "dex2oat watch dog thread startup"; local
504 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_init, (&mutex_, nullptr), reason);
507 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_condattr_init, (&condattr), reason);
508 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_condattr_setclock, (&condattr, CLOCK_MONOTONIC), reason);
509 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_init, (&cond_, &condattr), reason);
510 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_condattr_destroy, (&condattr), reason);
517 const char* reason = "dex2oat watch dog thread shutdown"; local
581 const char* reason = "dex2oat watch dog thread waiting"; local
[all...]
/art/compiler/jni/
H A Djni_compiler_test.cc660 std::string reason; local
662 LoadNativeLibrary(env_, "", class_loader_, &reason))
663 << reason;
676 std::string reason; local
678 LoadNativeLibrary(env_, "", class_loader_, &reason))
679 << reason;

Completed in 1365 milliseconds