Searched refs:MemoryProtection (Results 1 – 5 of 5) sorted by relevance
| /llvm-project-15.0.7/lldb/source/Plugins/Process/minidump/ |
| H A D | MinidumpParser.cpp | 531 MemoryProtection prot = entry.Protect; in CreateRegionsCacheFromMemoryInfoList() 532 region.SetReadable(bool(prot & MemoryProtection::NoAccess) ? no : yes); in CreateRegionsCacheFromMemoryInfoList() 534 bool(prot & (MemoryProtection::ReadWrite | MemoryProtection::WriteCopy | in CreateRegionsCacheFromMemoryInfoList() 535 MemoryProtection::ExecuteReadWrite | in CreateRegionsCacheFromMemoryInfoList() 536 MemoryProtection::ExeciteWriteCopy)) in CreateRegionsCacheFromMemoryInfoList() 540 bool(prot & (MemoryProtection::Execute | MemoryProtection::ExecuteRead | in CreateRegionsCacheFromMemoryInfoList() 541 MemoryProtection::ExecuteReadWrite | in CreateRegionsCacheFromMemoryInfoList() 542 MemoryProtection::ExeciteWriteCopy)) in CreateRegionsCacheFromMemoryInfoList()
|
| /llvm-project-15.0.7/llvm/include/llvm/BinaryFormat/ |
| H A D | Minidump.h | 86 enum class MemoryProtection : uint32_t { enum 107 support::little_t<MemoryProtection> AllocationProtect; 111 support::little_t<MemoryProtection> Protect;
|
| /llvm-project-15.0.7/llvm/lib/ObjectYAML/ |
| H A D | MinidumpYAML.cpp | 120 void yaml::ScalarBitSetTraits<MemoryProtection>::bitset( in bitset() 121 IO &IO, MemoryProtection &Protect) { in bitset() 123 IO.bitSetCase(Protect, #NATIVENAME, MemoryProtection::NAME); in bitset() 248 mapRequiredAs<MemoryProtection>(IO, "Allocation Protect", in mapping() 253 mapOptionalAs<MemoryProtection>(IO, "Protect", Info.Protect, in mapping()
|
| /llvm-project-15.0.7/llvm/unittests/Object/ |
| H A D | MinidumpTest.cpp | 596 EXPECT_EQ(MemoryProtection::Execute, Info.AllocationProtect); in TEST() 600 EXPECT_EQ(MemoryProtection::ExecuteRead, Info.Protect); in TEST()
|
| /llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/ |
| H A D | MinidumpYAML.h | 251 LLVM_YAML_DECLARE_BITSET_TRAITS(llvm::minidump::MemoryProtection)
|