Home
last modified time | relevance | path

Searched refs:Space (Results 1 – 9 of 9) sorted by relevance

/art/runtime/gc/space/
Dspace.cc29 Space::Space(const std::string& name, GcRetentionPolicy gc_retention_policy) in Space() function in art::gc::space::Space
32 void Space::Dump(std::ostream& os) const { in Dump()
36 std::ostream& operator<<(std::ostream& os, const Space& space) { in operator <<()
41 DlMallocSpace* Space::AsDlMallocSpace() { in AsDlMallocSpace()
46 RosAllocSpace* Space::AsRosAllocSpace() { in AsRosAllocSpace()
51 ZygoteSpace* Space::AsZygoteSpace() { in AsZygoteSpace()
56 BumpPointerSpace* Space::AsBumpPointerSpace() { in AsBumpPointerSpace()
61 RegionSpace* Space::AsRegionSpace() { in AsRegionSpace()
66 AllocSpace* Space::AsAllocSpace() { in AsAllocSpace()
71 ContinuousMemMapAllocSpace* Space::AsContinuousMemMapAllocSpace() { in AsContinuousMemMapAllocSpace()
[all …]
Dspace-inl.h31 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()
Dspace.h81 class Space {
171 virtual ~Space() {} in ~Space()
174 Space(const std::string& name, GcRetentionPolicy gc_retention_policy);
190 DISALLOW_IMPLICIT_CONSTRUCTORS(Space);
192 std::ostream& operator<<(std::ostream& os, const Space& space);
251 SweepCallbackContext(bool swap_bitmaps, space::Space* space);
253 space::Space* const space;
267 class ContinuousSpace : public Space {
327 Space(name, gc_retention_policy), begin_(begin), end_(end), limit_(limit) { in ContinuousSpace()
346 class DiscontinuousSpace : public Space {
Dzygote_space.h93 friend class Space; variable
Dimage_space.h174 friend class Space; variable
Dspace_create_test.cc65 std::unique_ptr<Space> space(CreateSpace("test", 16 * MB, 32 * MB, 32 * MB, nullptr)); in TEST_P()
172 space::Space* old_space = space; in TEST_P()
Dlarge_object_space.h120 friend class Space; variable
/art/runtime/gc/
Dheap.h92 class Space; variable
358 void AddSpace(space::Space* space)
361 void RemoveSpace(space::Space* space)
532 space::Space* FindSpaceFromObject(const mirror::Object*, bool fail_ok) const
673 accounting::ModUnionTable* FindModUnionTableFromSpace(space::Space* space);
676 accounting::RememberedSet* FindRememberedSetFromSpace(space::Space* space);
679 void RemoveRememberedSet(space::Space* space);
1052 AllocationTrackingSafeMap<space::Space*, accounting::ModUnionTable*, kAllocatorTagHeap>
1056 AllocationTrackingSafeMap<space::Space*, accounting::RememberedSet*, kAllocatorTagHeap>
Dheap.cc285 std::vector<space::Space*> added_image_spaces; in Heap()
328 for (space::Space* loaded_space : added_image_spaces) { in Heap()
797 space::Space* space = nullptr; in DumpObject()
1063 void Heap::AddSpace(space::Space* space) { in AddSpace()
1104 void Heap::RemoveSpace(space::Space* space) { in RemoveSpace()
1319 space::Space* Heap::FindSpaceFromObject(const mirror::Object* obj, bool fail_ok) const { in FindSpaceFromObject()
1320 space::Space* result = FindContinuousSpaceFromObject(obj, true); in FindSpaceFromObject()
2479 space::Space* old_main_space = main_space_; in PreZygoteFork()
3263 accounting::ModUnionTable* Heap::FindModUnionTableFromSpace(space::Space* space) { in FindModUnionTableFromSpace()
3271 accounting::RememberedSet* Heap::FindRememberedSetFromSpace(space::Space* space) { in FindRememberedSetFromSpace()
[all …]