/art/runtime/gc/space/ |
D | large_object_space.h | 86 bool Contains(const mirror::Object* obj) const { in Contains() function 125 bool Contains(const mirror::Object* obj) const NO_THREAD_SAFETY_ANALYSIS; 158 DCHECK(Contains(reinterpret_cast<mirror::Object*>(address))); in GetSlotIndexForAddress()
|
D | large_object_space.cc | 69 bool Contains(const mirror::Object* obj) const OVERRIDE { in Contains() function in art::gc::space::FINAL 72 return LargeObjectMapSpace::Contains(object_with_rdz); in Contains() 168 CHECK(Contains(ptrs[i])); in FreeList() 184 bool LargeObjectMapSpace::Contains(const mirror::Object* obj) const { in Contains() function in art::gc::space::LargeObjectMapSpace 341 DCHECK(Contains(obj)) << reinterpret_cast<void*>(Begin()) << " " << obj << " " in Free() 399 DCHECK(Contains(obj)); in AllocationSize()
|
D | dlmalloc_space-inl.h | 58 CHECK(Contains(result)) << "Allocation (" << reinterpret_cast<void*>(result) in AllocWithoutGrowthLocked()
|
D | dlmalloc_space.cc | 146 CHECK(!kDebugSpaces || Contains(result)); in AllocWithGrowth() 163 CHECK(Contains(ptr)) << "Free (" << ptr << ") not in bounds of heap " << *this; in Free() 198 if (!Contains(ptrs[i])) { in FreeList()
|
D | rosalloc_space-inl.h | 60 CHECK(Contains(result)) << "Allocation (" << reinterpret_cast<void*>(result) in AllocCommon()
|
D | rosalloc_space.cc | 162 CHECK(!kDebugSpaces || result == nullptr || Contains(result)); in AllocWithGrowth() 177 CHECK(Contains(ptr)) << "Free (" << ptr << ") not in bounds of heap " << *this; in Free() 209 if (!Contains(ptrs[i])) { in FreeList()
|
D | space.h | 95 virtual bool Contains(const mirror::Object* obj) const = 0; 293 bool Contains(const mirror::Object* obj) const { in Contains() function
|
D | bump_pointer_space.h | 123 bool Contains(const mirror::Object* obj) const { in Contains() function
|
/art/runtime/ |
D | thread_list.cc | 59 contains = Contains(self); in ~ThreadList() 71 bool ThreadList::Contains(Thread* thread) { in Contains() function in art::ThreadList 75 bool ThreadList::Contains(pid_t tid) { in Contains() function in art::ThreadList 133 contains = Contains(tid); in DumpUnattachedThreads() 427 if (!Contains(thread)) { in Resume() 484 if (!Contains(thread)) { in SuspendThreadByPeer() 566 DCHECK(Contains(thread)); in SuspendThreadByThreadId() 880 CHECK(!Contains(self)); in Register() 902 if (!Contains(self)) { in Unregister()
|
D | thread_list.h | 142 bool Contains(Thread* thread) EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_); 143 bool Contains(pid_t tid) EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_);
|
D | handle_scope.h | 98 bool Contains(StackReference<mirror::Object>* handle_scope_entry) const { in Contains() function
|
D | stack.h | 327 bool Contains(StackReference<mirror::Object>* shadow_frame_entry_obj) const { in Contains() function
|
D | stack.cc | 83 if (current_frame->Contains(shadow_frame_entry)) { in ShadowFramesContain()
|
D | thread.cc | 1310 if (cur->Contains(hs_entry)) { in HandleScopeContains()
|
/art/runtime/gc/accounting/ |
D | atomic_stack.h | 178 bool Contains(const T& value) const { in Contains() function
|
/art/runtime/gc/ |
D | heap-inl.h | 243 DCHECK(ret == nullptr || large_object_space_->Contains(ret)); in TryToAllocate()
|
D | heap.cc | 894 if (space->Contains(obj)) { in FindContinuousSpaceFromObject() 907 if (space->Contains(obj)) { in FindDiscontinuousSpaceFromObject() 1142 return temp_space_->Contains(obj); in IsLiveObjectLocked() 1168 } else if (allocation_stack_->Contains(obj)) { in IsLiveObjectLocked() 1178 } else if (live_stack_->Contains(obj)) { in IsLiveObjectLocked() 2398 if (alloc_stack->Contains(const_cast<mirror::Object*>(obj))) { in VerifyReference() 2401 if (live_stack->Contains(const_cast<mirror::Object*>(obj))) { in VerifyReference() 2404 if (alloc_stack->Contains(const_cast<mirror::Object*>(ref))) { in VerifyReference() 2407 if (live_stack->Contains(const_cast<mirror::Object*>(ref))) { in VerifyReference()
|
/art/compiler/optimizing/ |
D | nodes.cc | 270 bool HLoopInformation::Contains(const HBasicBlock& block) const { in Contains() function in art::HLoopInformation
|
D | nodes.h | 236 bool Contains(const HBasicBlock& block) const; 373 } else if (loop_information_->Contains(*info->GetHeader())) { in SetInLoop()
|
/art/runtime/gc/collector/ |
D | mark_sweep.cc | 377 (kIsDebugBuild && !large_object_space->Contains(obj)))) { in operator ()() 479 if (!large_object_space->Contains(root)) { in VerifyRoot()
|
/art/oatdump/ |
D | oatdump.cc | 1205 return image_space_.Contains(object); in InDumpSpace()
|