Searched defs:Thread (Results 1 - 2 of 2) sorted by relevance

/art/runtime/
H A Dthread.cc76 bool Thread::is_started_ = false;
77 pthread_key_t Thread::pthread_key_self_;
78 ConditionVariable* Thread::resume_cond_ = nullptr;
79 const size_t Thread::kStackOverflowImplicitCheckSize = GetStackOverflowReservedBytes(kRuntimeISA);
83 void Thread::InitCardTable() {
94 void Thread::InitTlsEntryPoints() {
106 void Thread::ResetQuickAllocEntryPointsForThread() {
110 void Thread::SetDeoptimizationShadowFrame(ShadowFrame* sf) {
114 void Thread::SetDeoptimizationReturnValue(const JValue& ret_val) {
118 ShadowFrame* Thread
1107 Thread::Thread(bool daemon) : tls32_(daemon), wait_monitor_(nullptr), interrupted_(false) { function in class:art::Thread
[all...]
H A Dthread.h79 class Thread;
82 // Thread priorities. These must match the Thread.MIN_PRIORITY,
83 // Thread.NORM_PRIORITY, and Thread.MAX_PRIORITY constants.
91 kSuspendRequest = 1, // If set implies that suspend_count_ > 0 and the Thread should enter the
98 // Thread's stack layout for implicit stack overflow checks:
126 class Thread { class in namespace:art
136 // Used to implement Thread.start.
141 static Thread* Attac
[all...]

Completed in 836 milliseconds