Home
last modified time | relevance | path

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

/art/test/305-other-fault-handler/
Dfault_handler.cc63 CHECK(target_map_.Protect(PROT_READ | PROT_WRITE)) << "Failed to mprotect R/W"; in Action()
67 CHECK(target_map_.Protect(PROT_READ)) << "Failed to mprotect R-only"; in Action()
/art/runtime/gc/collector/
Dsemi_space.cc223 from_space_->GetMemMap()->Protect(PROT_NONE); in MarkingPhase()
229 from_space_->GetMemMap()->Protect(PROT_READ); in MarkingPhase()
647 from_space_->GetMemMap()->Protect(PROT_NONE); in FinishPhase()
/art/libdexfile/dex/
Dart_dex_file_loader.cc62 return mem_map_.Protect(PROT_READ | PROT_WRITE); in EnableWrite()
71 return mem_map_.Protect(PROT_READ); in DisableWrite()
/art/libartbase/base/
Dmem_map.h231 bool Protect(int prot);
Dmem_map.cc443 if (!source->Protect(GetProtect())) { in ReplaceWith()
458 source->Protect(old_prot); in ReplaceWith()
857 bool MemMap::Protect(int prot) { in Protect() function in art::MemMap
/art/build/
DAndroid.bp26 "bugprone-unused-raii", // Protect scoped things like MutexLock.
/art/openjdkjvmti/
Dti_class_definition.cc73 CHECK(dex_data_mmap_.Protect(PROT_READ)); in InitializeMemory()
Dti_redefine.cc525 map.Protect(PROT_READ); in MoveDataToMemMap()
/art/runtime/
Dvdex_file.cc221 CHECK(mmap_.Protect(val ? (PROT_READ | PROT_WRITE) : PROT_READ)); in AllowWriting()
/art/runtime/gc/space/
Dregion_space.cc146 Protect(); in RegionSpace()
774 void RegionSpace::Protect() { in Protect() function in art::gc::space::RegionSpace
Dregion_space.h125 void Protect();
/art/runtime/gc/
Dheap.cc2096 to_space->GetMemMap()->Protect(PROT_READ | PROT_WRITE); in PerformHomogeneousSpaceCompact()
2332 non_moving_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE); in PreZygoteFork()
2363 main_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE); in PreZygoteFork()
2376 region_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE); in PreZygoteFork()
2380 bump_pointer_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE); in PreZygoteFork()
2653 temp_space_->GetMemMap()->Protect(PROT_READ | PROT_WRITE); in CollectGarbageInternal()
/art/tools/
Dart586 # Protect additional arguments in quotes to preserve whitespaces (used by
/art/dex2oat/
Ddex2oat.cc1944 if (!map.Protect(PROT_READ | PROT_WRITE)) { in Setup()