Home
last modified time | relevance | path

Searched refs:MemoryProtection (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DMinidumpParser.cpp523 MemoryProtection prot = entry.Protect; in CreateRegionsCacheFromMemoryInfoList()
524 region.SetReadable(bool(prot & MemoryProtection::NoAccess) ? no : yes); in CreateRegionsCacheFromMemoryInfoList()
526 bool(prot & (MemoryProtection::ReadWrite | MemoryProtection::WriteCopy | in CreateRegionsCacheFromMemoryInfoList()
527 MemoryProtection::ExecuteReadWrite | in CreateRegionsCacheFromMemoryInfoList()
528 MemoryProtection::ExeciteWriteCopy)) in CreateRegionsCacheFromMemoryInfoList()
532 bool(prot & (MemoryProtection::Execute | MemoryProtection::ExecuteRead | in CreateRegionsCacheFromMemoryInfoList()
533 MemoryProtection::ExecuteReadWrite | in CreateRegionsCacheFromMemoryInfoList()
534 MemoryProtection::ExeciteWriteCopy)) in CreateRegionsCacheFromMemoryInfoList()
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMinidump.h103 enum class MemoryProtection : uint32_t { enum
124 support::little_t<MemoryProtection> AllocationProtect;
128 support::little_t<MemoryProtection> Protect;
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMinidumpYAML.cpp123 void yaml::ScalarBitSetTraits<MemoryProtection>::bitset( in bitset()
124 IO &IO, MemoryProtection &Protect) { in bitset()
126 IO.bitSetCase(Protect, #NATIVENAME, MemoryProtection::NAME); in bitset()
251 mapRequiredAs<MemoryProtection>(IO, "Allocation Protect", in mapping()
256 mapOptionalAs<MemoryProtection>(IO, "Protect", Info.Protect, in mapping()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DMinidumpYAML.h276 LLVM_YAML_DECLARE_BITSET_TRAITS(llvm::minidump::MemoryProtection)