Home
last modified time | relevance | path

Searched refs:GetProtect (Results 1 – 7 of 7) sorted by relevance

/art/test/305-other-fault-handler/
Dfault_handler.cc72 CHECK_EQ(target_map_.GetProtect(), PROT_NONE); in CauseSegfault()
82 CHECK_EQ(target_map_.GetProtect(), PROT_READ); in CauseSegfault()
/art/openjdkjvmti/
Dti_class_definition.cc55 CHECK_EQ(dex_data_mmap_.GetProtect(), PROT_NONE); in InitializeMemory()
56 CHECK_EQ(temp_mmap_.GetProtect(), PROT_READ | PROT_WRITE); in InitializeMemory()
90 if (dex_data_mmap_.IsValid() && dex_data_mmap_.GetProtect() == PROT_NONE) { in IsModified()
Dti_class_definition.h142 dex_data_mmap_.GetProtect() == PROT_NONE; in IsLazyDefinition()
/art/libartbase/base/
Dmem_map.cc442 int old_prot = source->GetProtect(); in ReplaceWith()
443 if (!source->Protect(GetProtect())) { in ReplaceWith()
930 it->second->GetProtect() == map->GetProtect() && in DumpMapsLocked()
956 os << " prot=0x" << std::hex << map->GetProtect() << " " << map->GetName() << "]" << std::endl; in DumpMapsLocked()
1201 mem_map.BaseBegin(), mem_map.BaseEnd(), mem_map.GetProtect(), in operator <<()
Dmem_map.h236 int GetProtect() const { in GetProtect() function
/art/runtime/
Dvdex_file.cc255 CHECK_NE(mmap_.GetProtect() & PROT_WRITE, 0) in UnquickenInPlace()
/art/libdexfile/dex/
Dart_dex_file_loader.cc49 return mem_map_.GetProtect(); in GetPermissions()