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()
65 ZygoteSpace::ZygoteSpace(const std::string& name, MemMap* mem_map, size_t objects_allocated) in ZygoteSpace() function in art::gc::space::ZygoteSpace
71 void ZygoteSpace::Dump(std::ostream& os) const { in Dump()
79 mirror::Object* ZygoteSpace::Alloc(Thread*, size_t, size_t*, size_t*, size_t*) { in Alloc()
84 size_t ZygoteSpace::AllocationSize(mirror::Object*, size_t*) { in AllocationSize()
89 size_t ZygoteSpace::Free(Thread*, mirror::Object*) { in Free()
94 size_t ZygoteSpace::FreeList(Thread*, size_t, mirror::Object**) { in FreeList()
99 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, MemMap* mem_map,
44 ZygoteSpace* AsZygoteSpace() OVERRIDE { in AsZygoteSpace()
88 ZygoteSpace(const std::string& name, MemMap* mem_map, size_t objects_allocated);
94 DISALLOW_COPY_AND_ASSIGN(ZygoteSpace);
Dmalloc_space.h34 class ZygoteSpace; variable
133 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()
211 ZygoteSpace* zygote_space = ZygoteSpace::Create("Zygote space", ReleaseMemMap(), in CreateZygoteSpace()
Dspace.h54 class ZygoteSpace; variable
129 virtual ZygoteSpace* AsZygoteSpace();
Dspace.cc51 ZygoteSpace* Space::AsZygoteSpace() { in AsZygoteSpace()
Dspace_create_test.cc179 space::ZygoteSpace* zygote_space = space->CreateZygoteSpace("alloc space", in TEST_P()
/art/runtime/gc/
Dheap.h93 class ZygoteSpace; variable
1096 space::ZygoteSpace* zygote_space_;
/art/runtime/native/
Ddalvik_system_VMDebug.cc323 gc::space::ZygoteSpace* zygote_space = space->AsZygoteSpace(); in VMDebug_getHeapSpaceStats()