| /freebsd-14.2/contrib/llvm-project/lldb/source/API/ |
| H A D | SBMemoryRegionInfo.cpp | 35 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 D | MemoryRegionInfo.h | 25 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 D | LinuxProcMaps.cpp | 59 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 D | MemoryTagManagerAArch64MTE.cpp | 110 region->GetMemoryTagged() != MemoryRegionInfo::eYes) { in MakeTaggedRange()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/minidump/ |
| H A D | MinidumpParser.cpp | 336 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 D | ProcessMinidump.cpp | 352 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 D | MemoryRegionInfo.cpp | 33 case lldb_private::MemoryRegionInfo::eYes: in format()
|
| H A D | Process.cpp | 6014 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 D | ProcessElfCore.cpp | 325 ? 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 D | NativeProcessFreeBSD.cpp | 658 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 D | NativeProcessNetBSD.cpp | 699 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 D | GDBRemoteCommunicationClient.cpp | 1575 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 D | GDBRemoteCommunicationServerLLGS.cpp | 2808 if (memory_tagged == MemoryRegionInfo::eYes) { in Handle_qMemoryRegionInfo()
|
| H A D | ProcessGDBRemote.cpp | 2791 region_status.Success() && region.GetFlash() == MemoryRegionInfo::eYes; in DoWriteMemory()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/ |
| H A D | DynamicLoaderPOSIXDYLD.cpp | 564 if (status.Fail() || info.GetMapped() != MemoryRegionInfo::eYes || in LoadInterpreterModule()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectMemory.cpp | 1718 if (memory_tagged == MemoryRegionInfo::OptionalBool::eYes) in DumpRegion()
|