Home
last modified time | relevance | path

Searched refs:current (Results 1 – 6 of 6) sorted by relevance

/art/runtime/base/
Dtiming_logger.cc232 TimingLogger::ScopedSplit* current = timing_logger_->current_split_; in ~ScopedSplit() local
233 while ((current != NULL) && (current != this)) { in ~ScopedSplit()
234 delete current; in ~ScopedSplit()
235 current = timing_logger_->current_split_; in ~ScopedSplit()
238 CHECK(current != NULL) << "Missing scoped split (" << this->label_ in ~ScopedSplit()
/art/runtime/
Dreference_table.cc216 const mirror::Object* current = sorted_entries[idx]; in Dump() local
218 if (current == prev) { in Dump()
221 … } else if (current->GetClass() == prev->GetClass() && GetElementCount(current) == element_count) { in Dump()
/art/runtime/gc/space/
Dimage_space.cc153 byte* current = Begin() + RoundUp(sizeof(ImageHeader), kObjectAlignment); in VerifyImageAllocations() local
154 while (current < End()) { in VerifyImageAllocations()
155 DCHECK_ALIGNED(current, kObjectAlignment); in VerifyImageAllocations()
156 const mirror::Object* obj = reinterpret_cast<const mirror::Object*>(current); in VerifyImageAllocations()
159 current += RoundUp(obj->SizeOf(), kObjectAlignment); in VerifyImageAllocations()
/art/test/081-hot-exceptions/
Dinfo.txt3 cause a control flow change to deviate from the current method.
/art/runtime/mirror/
Dclass-inl.h201 const Class* current = this; in IsSubClass() local
203 if (current == klass) { in IsSubClass()
206 current = current->GetSuperClass(); in IsSubClass()
207 } while (current != NULL); in IsSubClass()
/art/runtime/arch/mips/
Dquick_entrypoints_mips.S995 move $a0, rSELF # pass Thread::current