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, MemMap* mem_map, in Create()
54 ZygoteSpace* zygote_space = new ZygoteSpace(name, mem_map, objects_allocated); in Create()
62 void ZygoteSpace::Clear() { in Clear()
67 ZygoteSpace::ZygoteSpace(const std::string& name, MemMap* mem_map, size_t objects_allocated) in ZygoteSpace() function in art::gc::space::ZygoteSpace
73 void ZygoteSpace::Dump(std::ostream& os) const { in Dump()
81 mirror::Object* ZygoteSpace::Alloc(Thread*, size_t, size_t*, size_t*, size_t*) { in Alloc()
86 size_t ZygoteSpace::AllocationSize(mirror::Object*, size_t*) { in AllocationSize()
91 size_t ZygoteSpace::Free(Thread*, mirror::Object*) { in Free()
96 size_t ZygoteSpace::FreeList(Thread*, size_t, mirror::Object**) { in FreeList()
101 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.cc164 ZygoteSpace* MallocSpace::CreateZygoteSpace(const char* alloc_space_name, bool low_memory_mode, in CreateZygoteSpace()
215 ZygoteSpace* zygote_space = ZygoteSpace::Create("Zygote space", ReleaseMemMap(), in CreateZygoteSpace()
Dspace.h53 class ZygoteSpace; variable
128 virtual ZygoteSpace* AsZygoteSpace();
Dspace.cc52 ZygoteSpace* Space::AsZygoteSpace() { in AsZygoteSpace()
Dspace_create_test.cc179 space::ZygoteSpace* zygote_space = space->CreateZygoteSpace("alloc space", in TEST_P()
/art/runtime/gc/
Dheap.h103 class ZygoteSpace; variable
1169 space::ZygoteSpace* zygote_space_;
/art/runtime/native/
Ddalvik_system_VMDebug.cc354 gc::space::ZygoteSpace* zygote_space = space->AsZygoteSpace(); in VMDebug_getHeapSpaceStats()