Home
last modified time | relevance | path

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

/art/runtime/gc/space/
Dzygote_space.cc42 ZygoteSpace* ZygoteSpace::Create(const std::string& name, MemMap* mem_map, in Create()
52 ZygoteSpace* zygote_space = new ZygoteSpace(name, mem_map, objects_allocated); in Create()
60 void ZygoteSpace::Clear() { in Clear()
64 ZygoteSpace::ZygoteSpace(const std::string& name, MemMap* mem_map, size_t objects_allocated) in ZygoteSpace() function in art::gc::space::ZygoteSpace
70 void ZygoteSpace::Dump(std::ostream& os) const { in Dump()
78 mirror::Object* ZygoteSpace::Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated, in Alloc()
84 size_t ZygoteSpace::AllocationSize(mirror::Object* obj, size_t* usable_size) { in AllocationSize()
89 size_t ZygoteSpace::Free(Thread* self, mirror::Object* ptr) { in Free()
94 size_t ZygoteSpace::FreeList(Thread* self, size_t num_ptrs, mirror::Object** ptrs) { in FreeList()
99 void ZygoteSpace::LogFragmentationAllocFailure(std::ostream& /*os*/, in LogFragmentationAllocFailure()
[all …]
Dzygote_space.h30 class ZygoteSpace FINAL : public ContinuousMemMapAllocSpace {
33 static ZygoteSpace* Create(const std::string& name, MemMap* mem_map,
44 ZygoteSpace* AsZygoteSpace() OVERRIDE { in AsZygoteSpace()
86 ZygoteSpace(const std::string& name, MemMap* mem_map, size_t objects_allocated);
92 DISALLOW_COPY_AND_ASSIGN(ZygoteSpace);
Dmalloc_space.h35 class ZygoteSpace; variable
124 ZygoteSpace* CreateZygoteSpace(const char* alloc_space_name, bool low_memory_mode,
Dmalloc_space.cc160 ZygoteSpace* MallocSpace::CreateZygoteSpace(const char* alloc_space_name, bool low_memory_mode, in CreateZygoteSpace()
210 ZygoteSpace* zygote_space = ZygoteSpace::Create("Zygote space", ReleaseMemMap(), in CreateZygoteSpace()
Dspace.h53 class ZygoteSpace; variable
127 virtual ZygoteSpace* AsZygoteSpace();
Dspace.cc51 ZygoteSpace* Space::AsZygoteSpace() { in AsZygoteSpace()
Dspace_test.h239 space::ZygoteSpace* zygote_space = space->CreateZygoteSpace("alloc space", in ZygoteSpaceTestBody()
587 TEST_F(spaceName##BaseTest, ZygoteSpace) { \
/art/runtime/native/
Ddalvik_system_VMDebug.cc287 gc::space::ZygoteSpace* zygote_space = space->AsZygoteSpace(); in VMDebug_getHeapSpaceStats()
/art/runtime/gc/
Dheap.cc2041 space::ZygoteSpace* zygote_space = old_alloc_space->CreateZygoteSpace(kNonMovingSpaceName, in PreZygoteFork()