Searched defs:Current (Results 1 - 3 of 3) sorted by relevance

/art/runtime/
H A Dthread-inl.h42 inline Thread* Thread::Current() { function in class:art::Thread
43 // We rely on Thread::Current returning null for a detached thread, so it's not obvious
58 DCHECK_EQ(Thread::Current(), this);
65 DCHECK_EQ(Thread::Current(), this);
83 if (kIsDebugBuild && this != Thread::Current()) {
86 LOG(FATAL) << "Thread \"" << name << "\"(" << this << " != Thread::Current()="
87 << Thread::Current() << ") changing state to " << new_state;
163 DCHECK_EQ(this, Thread::Current());
226 if (Runtime::Current()->GetHeap()->IsObjectValidationEnabled()) {
261 DCHECK(Thread::Current()
[all...]
H A Druntime.h223 static Runtime* Current() { function in class:art::verifier::Runtime
/art/compiler/optimizing/
H A Dnodes.h1177 HLoopInformation* Current() const { function in class:art::HLoopInformationOutwardIterator
2182 HInstruction* Current() const { return instruction_->InputAt(index_); } function in class:art::HInputIterator
2200 HInstruction* Current() const { return instruction_; } function in class:art::HInstructionIterator
2221 HInstruction* Current() const { return instruction_; } function in class:art::HBackwardInstructionIterator
6405 HBasicBlock* Current() const { return graph_.GetBlocks()[index_]; }
6423 HBasicBlock* Current() const { return graph_.GetReversePostOrder()[index_]; }
6442 HBasicBlock* Current() const { return graph_.GetReversePostOrder()[index_ - 1u]; }
6459 HBasicBlock* Current() const { return order_[index_ - 1u]; }
6479 HBasicBlock* Current() const { return order_[index_]; }
6504 HBasicBlock* Current() cons
[all...]

Completed in 662 milliseconds