Home
last modified time | relevance | path

Searched refs:eYes (Results 1 – 16 of 16) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBMemoryRegionInfo.cpp35 m_opaque_up->SetMapped(mapped ? MemoryRegionInfo::eYes in SBMemoryRegionInfo()
37 m_opaque_up->SetIsStackMemory(stack_memory ? MemoryRegionInfo::eYes in SBMemoryRegionInfo()
100 return m_opaque_up->GetReadable() == MemoryRegionInfo::eYes; in IsReadable()
106 return m_opaque_up->GetWritable() == MemoryRegionInfo::eYes; in IsWritable()
112 return m_opaque_up->GetExecutable() == MemoryRegionInfo::eYes; in IsExecutable()
118 return m_opaque_up->GetMapped() == MemoryRegionInfo::eYes; in IsMapped()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DMemoryRegionInfo.h25 enum OptionalBool { eDontKnow = -1, eNo = 0, eYes = 1 }; enumerator
84 if (m_read == eYes) in GetLLDBPermissions()
86 if (m_write == eYes) in GetLLDBPermissions()
88 if (m_execute == eYes) in GetLLDBPermissions()
96 m_read = (permissions & lldb::ePermissionsReadable) ? eYes : eNo; in SetLLDBPermissions()
97 m_write = (permissions & lldb::ePermissionsWritable) ? eYes : eNo; in SetLLDBPermissions()
98 m_execute = (permissions & lldb::ePermissionsExecutable) ? eYes : eNo; in SetLLDBPermissions()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DLinuxProcMaps.cpp59 region.SetMapped(MemoryRegionInfo::OptionalBool::eYes); in ParseMemoryRegionInfoFromProcMapsLine()
71 region.SetReadable(MemoryRegionInfo::OptionalBool::eYes); in ParseMemoryRegionInfoFromProcMapsLine()
81 region.SetWritable(MemoryRegionInfo::OptionalBool::eYes); in ParseMemoryRegionInfoFromProcMapsLine()
91 region.SetExecutable(MemoryRegionInfo::OptionalBool::eYes); in ParseMemoryRegionInfoFromProcMapsLine()
101 region.SetShared(MemoryRegionInfo::OptionalBool::eYes); in ParseMemoryRegionInfoFromProcMapsLine()
168 region->SetMemoryTagged(MemoryRegionInfo::eYes); in ParseLinuxSMapRegions()
H A DMemoryTagManagerAArch64MTE.cpp110 region->GetMemoryTagged() != MemoryRegionInfo::eYes) { in MakeTaggedRange()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DMinidumpParser.cpp336 if (region.GetExecutable() == MemoryRegionInfo::eYes) in CheckForLinuxExecutable()
525 constexpr auto yes = MemoryRegionInfo::eYes; in CreateRegionsCacheFromMemoryInfoList()
569 region.SetReadable(MemoryRegionInfo::eYes); in CreateRegionsCacheFromMemoryList()
570 region.SetMapped(MemoryRegionInfo::eYes); in CreateRegionsCacheFromMemoryList()
599 region.SetReadable(MemoryRegionInfo::eYes); in CreateRegionsCacheFromMemory64List()
600 region.SetMapped(MemoryRegionInfo::eYes); in CreateRegionsCacheFromMemory64List()
H A DProcessMinidump.cpp352 if (region.GetMapped() != MemoryRegionInfo::eYes && in BuildMemoryRegions()
358 to_add.back().SetMapped(MemoryRegionInfo::eYes); in BuildMemoryRegions()
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DMemoryRegionInfo.cpp33 case lldb_private::MemoryRegionInfo::eYes: in format()
H A DProcess.cpp6014 if (region_info.GetMapped() == MemoryRegionInfo::eYes) { in GetMemoryRegions()
6362 if (region.GetWritable() == MemoryRegionInfo::eYes) in GetCoreFileSaveRangesDirtyOnly()
6387 if (region.IsStackMemory() == MemoryRegionInfo::eYes) { in GetCoreFileSaveRangesStackOnly()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp325 ? MemoryRegionInfo::eYes in DoGetMemoryRegionInfo()
328 ? MemoryRegionInfo::eYes in DoGetMemoryRegionInfo()
331 ? MemoryRegionInfo::eYes in DoGetMemoryRegionInfo()
333 region_info.SetMapped(MemoryRegionInfo::eYes); in DoGetMemoryRegionInfo()
342 region_info.SetMemoryTagged(MemoryRegionInfo::eYes); in DoGetMemoryRegionInfo()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.cpp658 info.SetMapped(MemoryRegionInfo::OptionalBool::eYes); in PopulateMemoryRegionCache()
661 info.SetReadable(MemoryRegionInfo::OptionalBool::eYes); in PopulateMemoryRegionCache()
666 info.SetWritable(MemoryRegionInfo::OptionalBool::eYes); in PopulateMemoryRegionCache()
671 info.SetExecutable(MemoryRegionInfo::OptionalBool::eYes); in PopulateMemoryRegionCache()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.cpp699 info.SetMapped(MemoryRegionInfo::OptionalBool::eYes); in PopulateMemoryRegionCache()
702 info.SetReadable(MemoryRegionInfo::OptionalBool::eYes); in PopulateMemoryRegionCache()
707 info.SetWritable(MemoryRegionInfo::OptionalBool::eYes); in PopulateMemoryRegionCache()
712 info.SetExecutable(MemoryRegionInfo::OptionalBool::eYes); in PopulateMemoryRegionCache()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp1575 region_info.SetReadable(MemoryRegionInfo::eYes); in GetMemoryRegionInfo()
1580 region_info.SetWritable(MemoryRegionInfo::eYes); in GetMemoryRegionInfo()
1585 region_info.SetExecutable(MemoryRegionInfo::eYes); in GetMemoryRegionInfo()
1589 region_info.SetMapped(MemoryRegionInfo::eYes); in GetMemoryRegionInfo()
1614 region_info.SetMemoryTagged(MemoryRegionInfo::eYes); in GetMemoryRegionInfo()
1625 region_info.SetIsStackMemory(MemoryRegionInfo::eYes); in GetMemoryRegionInfo()
1630 region_info.SetIsStackMemory(MemoryRegionInfo::eYes); in GetMemoryRegionInfo()
1769 region.SetReadable(MemoryRegionInfo::eYes); in LoadQXferMemoryMap()
1772 region.SetReadable(MemoryRegionInfo::eYes); in LoadQXferMemoryMap()
1773 region.SetWritable(MemoryRegionInfo::eYes); in LoadQXferMemoryMap()
[all …]
H A DGDBRemoteCommunicationServerLLGS.cpp2808 if (memory_tagged == MemoryRegionInfo::eYes) { in Handle_qMemoryRegionInfo()
H A DProcessGDBRemote.cpp2791 region_status.Success() && region.GetFlash() == MemoryRegionInfo::eYes; in DoWriteMemory()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.cpp564 if (status.Fail() || info.GetMapped() != MemoryRegionInfo::eYes || in LoadInterpreterModule()
/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMemory.cpp1718 if (memory_tagged == MemoryRegionInfo::OptionalBool::eYes) in DumpRegion()