Searched defs:zygote_space (Results 1 - 5 of 5) sorted by relevance

/art/runtime/gc/space/
H A Dzygote_space.cc17 #include "zygote_space.h"
52 ZygoteSpace* zygote_space = new ZygoteSpace(name, mem_map, objects_allocated); local
53 CHECK(zygote_space->live_bitmap_.get() == nullptr);
54 CHECK(zygote_space->mark_bitmap_.get() == nullptr);
55 zygote_space->live_bitmap_.reset(live_bitmap);
56 zygote_space->mark_bitmap_.reset(mark_bitmap);
57 return zygote_space;
107 ZygoteSpace* zygote_space = context->space->AsZygoteSpace(); local
113 accounting::ContinuousSpaceBitmap* bitmap = zygote_space->GetLiveBitmap();
123 zygote_space
[all...]
H A Dmalloc_space.cc23 #include "gc/space/zygote_space.h"
210 ZygoteSpace* zygote_space = ZygoteSpace::Create("Zygote space", ReleaseMemMap(), local
212 if (UNLIKELY(zygote_space == nullptr)) {
217 return zygote_space;
H A Dspace_test.h28 #include "zygote_space.h"
239 space::ZygoteSpace* zygote_space = space->CreateZygoteSpace("alloc space", local
244 AddSpace(zygote_space, false);
/art/runtime/native/
H A Ddalvik_system_VMDebug.cc27 #include "gc/space/zygote_space.h"
287 gc::space::ZygoteSpace* zygote_space = space->AsZygoteSpace(); local
288 zygoteSize += zygote_space->Size();
289 zygoteUsed += zygote_space->GetBytesAllocated();
/art/runtime/gc/
H A Dheap.cc52 #include "gc/space/zygote_space.h"
2041 space::ZygoteSpace* zygote_space = old_alloc_space->CreateZygoteSpace(kNonMovingSpaceName, local
2050 CHECK(zygote_space != nullptr) << "Failed creating zygote space";
2051 AddSpace(zygote_space);
2059 new accounting::ModUnionTableCardCache("zygote space mod-union table", this, zygote_space);

Completed in 73 milliseconds