/art/runtime/ |
D | linear_alloc.cc | 51 bool LinearAlloc::Contains(void* ptr) const { in Contains() function in art::LinearAlloc 53 return allocator_.Contains(ptr); in Contains() 57 return allocator_.Contains(ptr); in ContainsUnsafe()
|
D | class_table_test.cc | 103 EXPECT_FALSE(table.Contains(h_Y.Get())); in TEST_F() 107 EXPECT_TRUE(table.Contains(h_X.Get())); in TEST_F() 108 EXPECT_TRUE(table.Contains(h_Y.Get())); in TEST_F() 145 EXPECT_FALSE(table.Contains(h_X.Get())); in TEST_F() 156 EXPECT_TRUE(table2.Contains(h_X.Get())); in TEST_F() 157 EXPECT_TRUE(table2.Contains(h_Y.Get())); in TEST_F()
|
D | handle_scope-inl.h | 100 inline bool HandleScope::Contains(StackReference<mirror::Object>* handle_scope_entry) const { in Contains() function 151 inline bool BaseHandleScope::Contains(StackReference<mirror::Object>* handle_scope_entry) const { in Contains() function 153 ? AsHandleScope()->Contains(handle_scope_entry) in Contains() 154 : AsVariableSized()->Contains(handle_scope_entry); in Contains() 226 inline bool VariableSizedHandleScope::Contains(StackReference<mirror::Object>* handle_scope_entry) in Contains() function 230 if (cur->Contains(handle_scope_entry)) { in Contains()
|
D | handle_scope_test.cc | 108 EXPECT_TRUE(hs.Contains(handles.back().GetReference())); in TEST_F() 109 EXPECT_TRUE(base->Contains(handles.back().GetReference())); in TEST_F() 118 EXPECT_TRUE(base->Contains(ref)); in TEST_F()
|
D | managed_stack.cc | 49 if (current_frame->Contains(shadow_frame_entry)) { in ShadowFramesContain()
|
D | linear_alloc.h | 49 bool Contains(void* ptr) const REQUIRES(!lock_);
|
D | handle_scope.h | 51 ALWAYS_INLINE bool Contains(StackReference<mirror::Object>* handle_scope_entry) const; 116 ALWAYS_INLINE bool Contains(StackReference<mirror::Object>* handle_scope_entry) const; 296 ALWAYS_INLINE bool Contains(StackReference<mirror::Object>* handle_scope_entry) const;
|
D | thread_list.h | 188 bool Contains(Thread* thread) REQUIRES(Locks::thread_list_lock_); 189 bool Contains(pid_t tid) REQUIRES(Locks::thread_list_lock_);
|
D | thread_list.cc | 98 contains = Contains(self); in ShutDown() 117 bool ThreadList::Contains(Thread* thread) { in Contains() function in art::ThreadList 121 bool ThreadList::Contains(pid_t tid) { in Contains() function in art::ThreadList 186 contains = Contains(tid); in DumpUnattachedThreads() 849 if (!Contains(thread)) { in Resume() 929 if (!Contains(thread)) { in SuspendThreadByPeer() 1047 DCHECK(Contains(thread)); in SuspendThreadByThreadId() 1411 CHECK(!Contains(self)); in Register() 1453 if (!Contains(self)) { in Unregister()
|
D | oat_quick_method_header.h | 137 bool Contains(uintptr_t pc) const { in Contains() function
|
D | stack.cc | 648 if (!linear_alloc->Contains(method)) { in SanityCheckFrame() 657 if (!class_linear_alloc->Contains(canonical)) { in SanityCheckFrame() 667 if (methods.Contains(offset) || runtime_methods.Contains(offset)) { in SanityCheckFrame()
|
/art/compiler/optimizing/ |
D | locations.h | 304 bool Contains(Location other) const { in Contains() function 315 bool overlap = Contains(other) || other.Contains(*this); in OverlapsWith() 320 DCHECK(!Contains(other.ToLow())); in OverlapsWith() 321 DCHECK(!Contains(other.ToHigh())); in OverlapsWith() 457 return Contains(core_registers_, id); in ContainsCoreRegister() 461 return Contains(floating_point_registers_, id); in ContainsFloatingPointRegister() 464 static bool Contains(uint32_t register_set, uint32_t reg) { in Contains() function 625 return RegisterSet::Contains(register_mask_, reg_id); in RegisterContainsObject()
|
D | linear_order.cc | 63 if (loop->Contains(*block)) { in IsLinearOrderWellFormed()
|
D | gvn.cc | 115 bool Contains(HInstruction* instruction) const { in Contains() function in art::ValueSet 152 return !predecessor->Contains(node->GetInstruction()); in IntersectWith()
|
/art/runtime/gc/space/ |
D | large_object_space.h | 94 bool Contains(const mirror::Object* obj) const { in Contains() function 144 bool Contains(const mirror::Object* obj) const NO_THREAD_SAFETY_ANALYSIS; 186 DCHECK(Contains(reinterpret_cast<mirror::Object*>(address))); in GetSlotIndexForAddress()
|
D | dlmalloc_space-inl.h | 62 CHECK(Contains(result)) << "Allocation (" << reinterpret_cast<void*>(result) in AllocWithoutGrowthLocked()
|
D | rosalloc_space-inl.h | 47 CHECK(Contains(result)) << "Allocation (" << reinterpret_cast<void*>(result) in AllocCommon()
|
D | large_object_space.cc | 86 bool Contains(const mirror::Object* obj) const OVERRIDE { in Contains() function in art::gc::space::FINAL 87 return LargeObjectMapSpace::Contains(ObjectWithRedzone(obj)); in Contains() 217 CHECK(Contains(ptrs[i])); in FreeList() 233 bool LargeObjectMapSpace::Contains(const mirror::Object* obj) const { in Contains() function in art::gc::space::LargeObjectMapSpace 404 DCHECK(Contains(obj)) << reinterpret_cast<void*>(Begin()) << " " << obj << " " in Free() 462 DCHECK(Contains(obj)); in AllocationSize()
|
D | dlmalloc_space.cc | 149 CHECK(!kDebugSpaces || Contains(result)); in AllocWithGrowth() 172 CHECK(Contains(ptr)) << "Free (" << ptr << ") not in bounds of heap " << *this; in Free() 207 if (!Contains(ptrs[i])) { in FreeList()
|
D | rosalloc_space.cc | 173 CHECK(!kDebugSpaces || result == nullptr || Contains(result)); in AllocWithGrowth() 195 CHECK(Contains(ptr)) << "Free (" << ptr << ") not in bounds of heap " << *this; in Free() 227 if (!Contains(ptrs[i])) { in FreeList()
|
D | space.h | 96 virtual bool Contains(const mirror::Object* obj) const = 0; 313 bool Contains(const mirror::Object* obj) const { in Contains() function
|
D | region_space.h | 146 bool Contains(const mirror::Object* obj) const { in Contains() function 438 bool Contains(mirror::Object* ref) const { in Contains() function 493 DCHECK(reg->Contains(ref)); in RefToRegionLocked()
|
D | bump_pointer_space.h | 129 bool Contains(const mirror::Object* obj) const { in Contains() function
|
/art/runtime/base/ |
D | arena_allocator.h | 226 bool Contains(const void* ptr) const { in Contains() function 380 bool Contains(const void* ptr) const;
|
D | array_slice.h | 132 bool Contains(const T* element) const { in Contains() function
|