Home
last modified time | relevance | path

Searched refs:Protect (Results 1 – 6 of 6) sorted by relevance

/art/runtime/
Dmem_map.h131 bool Protect(int prot);
Dmem_map.cc610 bool MemMap::Protect(int prot) { in Protect() function in art::MemMap
Ddex_file.cc192 return mem_map_->Protect(PROT_READ | PROT_WRITE); in EnableWrite()
201 return mem_map_->Protect(PROT_READ); in DisableWrite()
/art/runtime/gc/collector/
Dsemi_space.cc271 from_space_->GetMemMap()->Protect(PROT_NONE); in MarkingPhase()
277 from_space_->GetMemMap()->Protect(PROT_READ); in MarkingPhase()
813 from_space_->GetMemMap()->Protect(PROT_NONE); in FinishPhase()
/art/runtime/gc/
Dheap.cc2061 to_space->GetMemMap()->Protect(PROT_READ | PROT_WRITE); in PerformHomogeneousSpaceCompact()
2151 mem_map->Protect(PROT_READ | PROT_WRITE); in TransitionCollector()
2186 mem_map->Protect(PROT_READ | PROT_WRITE); in TransitionCollector()
2201 mem_map->Protect(PROT_READ | PROT_WRITE); in TransitionCollector()
2211 mem_map->Protect(PROT_NONE); in TransitionCollector()
2444 non_moving_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE); in PreZygoteFork()
2475 main_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE); in PreZygoteFork()
2486 region_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE); in PreZygoteFork()
2488 bump_pointer_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE); in PreZygoteFork()
2689 temp_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE); in CollectGarbageInternal()
/art/dex2oat/
Ddex2oat.cc1460 if (!map->Protect(PROT_READ | PROT_WRITE)) { in Setup()