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

/art/runtime/
H A Dthread.h73 class Thread;
76 // Thread priorities. These must match the Thread.MIN_PRIORITY,
77 // Thread.NORM_PRIORITY, and Thread.MAX_PRIORITY constants.
85 kSuspendRequest = 1, // If set implies that suspend_count_ > 0 and the Thread should enter the
90 class PACKED(4) Thread {
96 // Used to implement Thread.start.
101 static Thread* Attach(const char* thread_name, bool as_daemon, jobject thread_group,
107 static Thread* Curren
817 DISALLOW_COPY_AND_ASSIGN(Thread); variable
[all...]
H A Dthread.cc74 bool Thread::is_started_ = false;
75 pthread_key_t Thread::pthread_key_self_;
76 ConditionVariable* Thread::resume_cond_ = NULL;
80 void Thread::InitCardTable() {
93 void Thread::InitTlsEntryPoints() {
111 void Thread::SetDeoptimizationShadowFrame(ShadowFrame* sf) {
115 void Thread::SetDeoptimizationReturnValue(const JValue& ret_val) {
119 ShadowFrame* Thread::GetAndClearDeoptimizationShadowFrame(JValue* ret_val) {
126 void Thread::InitTid() {
130 void Thread
953 Thread::Thread(bool daemon) function in class:art::Thread
[all...]

Completed in 1459 milliseconds