Searched defs:zygote_space (Results 1 - 4 of 4) sorted by last modified time

/art/runtime/native/
H A Ddalvik_system_VMDebug.cc35 #include "gc/space/zygote_space.h"
394 gc::space::ZygoteSpace* zygote_space = space->AsZygoteSpace(); local
395 zygoteSize += zygote_space->Size();
396 zygoteUsed += zygote_space->GetBytesAllocated();
/art/runtime/gc/space/
H A Dmalloc_space.cc27 #include "gc/space/zygote_space.h"
216 ZygoteSpace* zygote_space = ZygoteSpace::Create("Zygote space", ReleaseMemMap(), local
218 if (UNLIKELY(zygote_space == nullptr)) {
223 return zygote_space;
H A Dspace_create_test.cc179 space::ZygoteSpace* zygote_space = space->CreateZygoteSpace("alloc space", local
184 AddSpace(zygote_space, false);
H A Dzygote_space.cc17 #include "zygote_space.h"
54 ZygoteSpace* zygote_space = new ZygoteSpace(name, mem_map, objects_allocated); local
55 CHECK(zygote_space->live_bitmap_.get() == nullptr);
56 CHECK(zygote_space->mark_bitmap_.get() == nullptr);
57 zygote_space->live_bitmap_.reset(live_bitmap);
58 zygote_space->mark_bitmap_.reset(mark_bitmap);
59 return zygote_space;
109 ZygoteSpace* zygote_space = context->space->AsZygoteSpace(); local
115 accounting::ContinuousSpaceBitmap* bitmap = zygote_space->GetLiveBitmap();
125 zygote_space
[all...]

Completed in 58 milliseconds