Home
last modified time | relevance | path

Searched refs:GetMemMap (Results 1 – 12 of 12) sorted by relevance

/art/runtime/gc/space/
Dmalloc_space.cc192 VLOG(heap) << "Size " << GetMemMap()->Size(); in CreateZygoteSpace()
197 std::unique_ptr<MemMap> mem_map(GetMemMap()->RemapAtEnd(End(), alloc_space_name, in CreateZygoteSpace()
265 GetMemMap()->SetSize(new_capacity); in ClampGrowthLimit()
Dspace.h379 MemMap* GetMemMap() { in GetMemMap() function
383 const MemMap* GetMemMap() const { in GetMemMap() function
Dmalloc_space.h105 return GetMemMap()->Size(); in NonGrowthLimitCapacity()
Ddlmalloc_space.cc282 madvise(GetMemMap()->Begin(), GetMemMap()->Size(), MADV_DONTNEED); in Clear()
Dbump_pointer_space.h94 return GetMemMap()->Size(); in NonGrowthLimitCapacity()
Drosalloc_space.cc362 madvise(GetMemMap()->Begin(), GetMemMap()->Size(), MADV_DONTNEED); in Clear()
Dregion_space.cc458 GetMemMap()->SetSize(new_capacity); in ClampGrowthLimit()
/art/patchoat/
Dpatchoat.h141 reinterpret_cast<uintptr_t>(image_space->GetMemMap()->Begin()); in RelocatedCopyOfFollowImages()
Dpatchoat.cc543 space->GetMemMap(), in Patch()
/art/runtime/gc/collector/
Dsemi_space.cc275 from_space_->GetMemMap()->Protect(PROT_NONE); in MarkingPhase()
281 from_space_->GetMemMap()->Protect(PROT_READ); in MarkingPhase()
808 from_space_->GetMemMap()->Protect(PROT_NONE); in FinishPhase()
/art/runtime/gc/
Dheap.cc619 bool no_gap = MemMap::CheckNoGaps(first_space->GetMemMap(), non_moving_space_->GetMemMap()); in Heap()
1929 to_space->GetMemMap()->Protect(PROT_READ | PROT_WRITE); in PerformHomogeneousSpaceCompact()
2302 non_moving_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE); in PreZygoteFork()
2333 main_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE); in PreZygoteFork()
2344 region_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE); in PreZygoteFork()
2348 bump_pointer_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE); in PreZygoteFork()
2591 temp_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE); in CollectGarbageInternal()
2594 temp_space_->GetMemMap()->TryReadable(); in CollectGarbageInternal()
/art/runtime/
Dclass_linker.cc1346 const uint8_t* target_base = space->GetMemMap()->Begin(); in Update()