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.cpp532 MemoryProtection prot = entry.Protect; in CreateRegionsCacheFromMemoryInfoList()
533 region.SetReadable(bool(prot & MemoryProtection::NoAccess) ? no : yes); in CreateRegionsCacheFromMemoryInfoList()
535 bool(prot & (MemoryProtection::ReadWrite | MemoryProtection::WriteCopy | in CreateRegionsCacheFromMemoryInfoList()
536 MemoryProtection::ExecuteReadWrite | in CreateRegionsCacheFromMemoryInfoList()
537 MemoryProtection::ExeciteWriteCopy)) in CreateRegionsCacheFromMemoryInfoList()
541 bool(prot & (MemoryProtection::Execute | MemoryProtection::ExecuteRead | in CreateRegionsCacheFromMemoryInfoList()
542 MemoryProtection::ExecuteReadWrite | in CreateRegionsCacheFromMemoryInfoList()
543 MemoryProtection::ExeciteWriteCopy)) in CreateRegionsCacheFromMemoryInfoList()
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMinidump.h86 enum class MemoryProtection : uint32_t { enum
107 support::little_t<MemoryProtection> AllocationProtect;
111 support::little_t<MemoryProtection> Protect;
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMinidumpYAML.cpp120 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()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DMinidumpYAML.h251 LLVM_YAML_DECLARE_BITSET_TRAITS(llvm::minidump::MemoryProtection)