Searched refs:Space (Results 1 – 12 of 12) sorted by relevance
/art/runtime/gc/space/ |
D | space.cc | 32 Space::Space(const std::string& name, GcRetentionPolicy gc_retention_policy) in Space() function in art::gc::space::Space 35 void Space::Dump(std::ostream& os) const { in Dump() 39 std::ostream& operator<<(std::ostream& os, const Space& space) { in operator <<() 44 DlMallocSpace* Space::AsDlMallocSpace() { in AsDlMallocSpace() 49 RosAllocSpace* Space::AsRosAllocSpace() { in AsRosAllocSpace() 54 ZygoteSpace* Space::AsZygoteSpace() { in AsZygoteSpace() 59 BumpPointerSpace* Space::AsBumpPointerSpace() { in AsBumpPointerSpace() 64 RegionSpace* Space::AsRegionSpace() { in AsRegionSpace() 69 AllocSpace* Space::AsAllocSpace() { in AsAllocSpace() 74 ContinuousMemMapAllocSpace* Space::AsContinuousMemMapAllocSpace() { in AsContinuousMemMapAllocSpace() [all …]
|
D | space-inl.h | 31 inline ImageSpace* Space::AsImageSpace() { in AsImageSpace() 36 inline MallocSpace* Space::AsMallocSpace() { in AsMallocSpace() 42 inline LargeObjectSpace* Space::AsLargeObjectSpace() { in AsLargeObjectSpace() 47 inline ContinuousSpace* Space::AsContinuousSpace() { in AsContinuousSpace() 52 inline DiscontinuousSpace* Space::AsDiscontinuousSpace() { in AsDiscontinuousSpace()
|
D | space.h | 80 class EXPORT Space { 170 virtual ~Space() {} in ~Space() 173 Space(const std::string& name, GcRetentionPolicy gc_retention_policy); 189 DISALLOW_IMPLICIT_CONSTRUCTORS(Space); 191 std::ostream& operator<<(std::ostream& os, const Space& space); 253 SweepCallbackContext(bool swap_bitmaps, space::Space* space); 255 space::Space* const space; 269 class ContinuousSpace : public Space { 331 Space(name, gc_retention_policy), begin_(begin), end_(end), limit_(limit) { in ContinuousSpace() 350 class DiscontinuousSpace : public Space {
|
D | zygote_space.h | 96 friend class Space; variable
|
D | space_create_test.cc | 62 std::unique_ptr<Space> space(CreateSpace("test", 16 * MB, 32 * MB, 32 * MB)); in TEST_P() 169 space::Space* old_space = space; in TEST_P()
|
D | large_object_space.h | 156 friend class Space; variable
|
D | image_space.h | 511 friend class Space; variable
|
/art/runtime/gc/ |
D | verification.h | 35 class Space; variable 67 bool IsValidHeapObjectAddress(const void* addr, space::Space** out_space = nullptr) const 76 bool IsAddressInHeapSpace(const void* addr, space::Space** out_space = nullptr) const
|
D | verification.cc | 78 space::Space* const space = heap_->FindSpaceFromAddress(addr); in DumpObjectInfo() 130 bool Verification::IsAddressInHeapSpace(const void* addr, space::Space** out_space) const { in IsAddressInHeapSpace() 131 space::Space* const space = heap_->FindSpaceFromAddress(addr); in IsAddressInHeapSpace() 141 bool Verification::IsValidHeapObjectAddress(const void* addr, space::Space** out_space) const { in IsValidHeapObjectAddress()
|
D | heap.h | 113 class Space; variable 449 void AddSpace(space::Space* space) 452 void RemoveSpace(space::Space* space) 644 EXPORT space::Space* FindSpaceFromObject(ObjPtr<mirror::Object> obj, bool fail_ok) const 647 space::Space* FindSpaceFromAddress(const void* ptr) const 800 accounting::ModUnionTable* FindModUnionTableFromSpace(space::Space* space); 803 accounting::RememberedSet* FindRememberedSetFromSpace(space::Space* space); 806 void RemoveRememberedSet(space::Space* space); 1368 AllocationTrackingSafeMap<space::Space*, accounting::ModUnionTable*, kAllocatorTagHeap> 1372 AllocationTrackingSafeMap<space::Space*, accounting::RememberedSet*, kAllocatorTagHeap>
|
D | heap.cc | 1167 void Heap::AddSpace(space::Space* space) { in AddSpace() 1210 void Heap::RemoveSpace(space::Space* space) { in RemoveSpace() 1474 space::Space* Heap::FindSpaceFromObject(ObjPtr<mirror::Object> obj, bool fail_ok) const { in FindSpaceFromObject() 1475 space::Space* result = FindContinuousSpaceFromObject(obj, true); in FindSpaceFromObject() 1482 space::Space* Heap::FindSpaceFromAddress(const void* addr) const { in FindSpaceFromAddress() 1497 space::Space* space = FindSpaceFromAddress(addr); in DumpSpaceNameFromAddress() 2542 space::Space* old_main_space = main_space_; in PreZygoteFork() 3465 accounting::ModUnionTable* Heap::FindModUnionTableFromSpace(space::Space* space) { in FindModUnionTableFromSpace() 3473 accounting::RememberedSet* Heap::FindRememberedSetFromSpace(space::Space* space) { in FindRememberedSetFromSpace() 3729 space::Space* space = FindContinuousSpaceFromObject(obj.Ptr(), true); in IsMovableObject() [all …]
|
/art/test/common/ |
D | runtime_state.cc | 505 gc::space::Space* space = in Java_Main_isInImageSpace()
|