Home
last modified time | relevance | path

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

/art/runtime/gc/space/
Dzygote_space.cc44 ZygoteSpace* ZygoteSpace::Create(const std::string& name, in Create()
55 ZygoteSpace* zygote_space = new ZygoteSpace(name, std::move(mem_map), objects_allocated); in Create()
63 void ZygoteSpace::Clear() { in Clear()
68 ZygoteSpace::ZygoteSpace(const std::string& name, MemMap&& mem_map, size_t objects_allocated) in ZygoteSpace() function in art::gc::space::ZygoteSpace
78 void ZygoteSpace::Dump(std::ostream& os) const { in Dump()
86 mirror::Object* ZygoteSpace::Alloc(Thread*, size_t, size_t*, size_t*, size_t*) { in Alloc()
91 size_t ZygoteSpace::AllocationSize(mirror::Object*, size_t*) { in AllocationSize()
96 size_t ZygoteSpace::Free(Thread*, mirror::Object*) { in Free()
101 size_t ZygoteSpace::FreeList(Thread*, size_t, mirror::Object**) { in FreeList()
106 void ZygoteSpace::LogFragmentationAllocFailure(std::ostream&, size_t) { in LogFragmentationAllocFailure()
[all …]
Dzygote_space.h30 class ZygoteSpace final : public ContinuousMemMapAllocSpace {
33 static ZygoteSpace* Create(const std::string& name,
45 ZygoteSpace* AsZygoteSpace() override { in AsZygoteSpace()
89 ZygoteSpace(const std::string& name, MemMap&& mem_map, size_t objects_allocated);
95 DISALLOW_COPY_AND_ASSIGN(ZygoteSpace);
Dmalloc_space.h36 class ZygoteSpace; variable
130 ZygoteSpace* CreateZygoteSpace(const char* alloc_space_name, bool low_memory_mode,
Dmalloc_space.cc181 ZygoteSpace* MallocSpace::CreateZygoteSpace(const char* alloc_space_name, bool low_memory_mode, in CreateZygoteSpace()
238 ZygoteSpace* zygote_space = ZygoteSpace::Create("Zygote space", ReleaseMemMap(), in CreateZygoteSpace()
Dspace.h53 class ZygoteSpace; variable
128 virtual ZygoteSpace* AsZygoteSpace();
Dspace.cc54 ZygoteSpace* Space::AsZygoteSpace() { in AsZygoteSpace()
Dspace_create_test.cc176 space::ZygoteSpace* zygote_space = space->CreateZygoteSpace("alloc space", in TEST_P()
/art/runtime/gc/
Dheap.h108 class ZygoteSpace; variable
1277 space::ZygoteSpace* zygote_space_;
/art/runtime/native/
Ddalvik_system_VMDebug.cc412 gc::space::ZygoteSpace* zygote_space = space->AsZygoteSpace(); in VMDebug_getHeapSpaceStats()