/art/runtime/jdwp/ |
D | object_registry.h | 75 bool Contains(mirror::Object* o) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { in Contains() function 76 return Contains(o, nullptr); in Contains() 117 bool Contains(mirror::Object* o, ObjectRegistryEntry** out_entry)
|
D | object_registry.cc | 85 bool ObjectRegistry::Contains(mirror::Object* o, ObjectRegistryEntry** out_entry) { in Contains() function in art::ObjectRegistry
|
/art/runtime/ |
D | thread_list.cc | 58 contains = Contains(self); in ~ThreadList() 70 bool ThreadList::Contains(Thread* thread) { in Contains() function in art::ThreadList 74 bool ThreadList::Contains(pid_t tid) { in Contains() function in art::ThreadList 132 contains = Contains(tid); in DumpUnattachedThreads() 424 if (!Contains(thread)) { in Resume() 481 if (!Contains(thread)) { in SuspendThreadByPeer() 563 DCHECK(Contains(thread)); in SuspendThreadByThreadId() 826 CHECK(!Contains(self)); in Register() 845 if (!Contains(self)) { in Unregister()
|
D | thread_list.h | 139 bool Contains(Thread* thread) EXCLUSIVE_LOCKS_REQUIRED(Locks::thread_list_lock_); 140 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 | 326 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 | 1273 if (cur->Contains(hs_entry)) { in HandleScopeContains()
|
/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/gc/accounting/ |
D | atomic_stack.h | 178 bool Contains(const T& value) const { in Contains() function
|
/art/runtime/gc/ |
D | heap.cc | 874 if (space->Contains(obj)) { in FindContinuousSpaceFromObject() 887 if (space->Contains(obj)) { in FindDiscontinuousSpaceFromObject() 1090 return temp_space_->Contains(obj); in IsLiveObjectLocked() 1116 } else if (allocation_stack_->Contains(obj)) { in IsLiveObjectLocked() 1126 } else if (live_stack_->Contains(obj)) { in IsLiveObjectLocked() 2333 if (alloc_stack->Contains(const_cast<mirror::Object*>(obj))) { in VerifyReference() 2336 if (live_stack->Contains(const_cast<mirror::Object*>(obj))) { in VerifyReference() 2339 if (alloc_stack->Contains(const_cast<mirror::Object*>(ref))) { in VerifyReference() 2342 if (live_stack->Contains(const_cast<mirror::Object*>(ref))) { in VerifyReference()
|
D | heap-inl.h | 231 DCHECK(ret == nullptr || large_object_space_->Contains(ret)); in TryToAllocate()
|
/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 ()() 484 if (!large_object_space->Contains(root)) { in VerifyRoot()
|
/art/oatdump/ |
D | oatdump.cc | 1195 return image_space_.Contains(object); in InDumpSpace()
|