Lines Matching refs:ZygoteSpace
43 ZygoteSpace* ZygoteSpace::Create(const std::string& name, in Create()
54 ZygoteSpace* zygote_space = new ZygoteSpace(name, std::move(mem_map), objects_allocated); in Create()
60 void ZygoteSpace::SetMarkBitInLiveObjects() { in SetMarkBitInLiveObjects()
69 void ZygoteSpace::Clear() { in Clear()
74 ZygoteSpace::ZygoteSpace(const std::string& name, MemMap&& mem_map, size_t objects_allocated) in ZygoteSpace() function in art::gc::space::ZygoteSpace
84 void ZygoteSpace::Dump(std::ostream& os) const { in Dump()
92 mirror::Object* ZygoteSpace::Alloc(Thread*, size_t, size_t*, size_t*, size_t*) { in Alloc()
97 size_t ZygoteSpace::AllocationSize(mirror::Object*, size_t*) { in AllocationSize()
102 size_t ZygoteSpace::Free(Thread*, mirror::Object*) { in Free()
107 size_t ZygoteSpace::FreeList(Thread*, size_t, mirror::Object**) { in FreeList()
112 bool ZygoteSpace::LogFragmentationAllocFailure(std::ostream&, size_t) { in LogFragmentationAllocFailure()
117 void ZygoteSpace::SweepCallback(size_t num_ptrs, mirror::Object** ptrs, void* arg) { in SweepCallback()
120 ZygoteSpace* zygote_space = context->space->AsZygoteSpace(); in SweepCallback()