Searched refs:ZygoteSpace (Results 1 – 9 of 9) sorted by relevance
/art/runtime/gc/space/ |
D | zygote_space.cc | 42 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 …]
|
D | zygote_space.h | 30 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);
|
D | malloc_space.h | 35 class ZygoteSpace; variable 124 ZygoteSpace* CreateZygoteSpace(const char* alloc_space_name, bool low_memory_mode,
|
D | malloc_space.cc | 160 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()
|
D | space.h | 53 class ZygoteSpace; variable 127 virtual ZygoteSpace* AsZygoteSpace();
|
D | space.cc | 51 ZygoteSpace* Space::AsZygoteSpace() { in AsZygoteSpace()
|
D | space_test.h | 239 space::ZygoteSpace* zygote_space = space->CreateZygoteSpace("alloc space", in ZygoteSpaceTestBody() 587 TEST_F(spaceName##BaseTest, ZygoteSpace) { \
|
/art/runtime/native/ |
D | dalvik_system_VMDebug.cc | 287 gc::space::ZygoteSpace* zygote_space = space->AsZygoteSpace(); in VMDebug_getHeapSpaceStats()
|
/art/runtime/gc/ |
D | heap.cc | 2041 space::ZygoteSpace* zygote_space = old_alloc_space->CreateZygoteSpace(kNonMovingSpaceName, in PreZygoteFork()
|