Lines Matching refs:ZygoteSpace
45 ZygoteSpace* ZygoteSpace::Create(const std::string& name, in Create()
56 ZygoteSpace* zygote_space = new ZygoteSpace(name, std::move(mem_map), objects_allocated); in Create()
62 void ZygoteSpace::SetMarkBitInLiveObjects() { in SetMarkBitInLiveObjects()
71 void ZygoteSpace::Clear() { in Clear()
76 ZygoteSpace::ZygoteSpace(const std::string& name, MemMap&& mem_map, size_t objects_allocated) in ZygoteSpace() function in art::gc::space::ZygoteSpace
86 void ZygoteSpace::Dump(std::ostream& os) const { in Dump()
94 mirror::Object* ZygoteSpace::Alloc(Thread*, size_t, size_t*, size_t*, size_t*) { in Alloc()
99 size_t ZygoteSpace::AllocationSize(mirror::Object*, size_t*) { in AllocationSize()
104 size_t ZygoteSpace::Free(Thread*, mirror::Object*) { in Free()
109 size_t ZygoteSpace::FreeList(Thread*, size_t, mirror::Object**) { in FreeList()
114 void ZygoteSpace::LogFragmentationAllocFailure(std::ostream&, size_t) { in LogFragmentationAllocFailure()
119 void ZygoteSpace::SweepCallback(size_t num_ptrs, mirror::Object** ptrs, void* arg) { in SweepCallback()
122 ZygoteSpace* zygote_space = context->space->AsZygoteSpace(); in SweepCallback()