Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/Process/Utility/
H A DLinuxProcMaps.cpp29 StringExtractor line_extractor(maps_line); in ParseMemoryRegionInfoFromProcMapsLine() local
39 if (!line_extractor.GetBytesLeft() || (line_extractor.GetChar() != '-')) in ParseMemoryRegionInfoFromProcMapsLine()
48 if (!line_extractor.GetBytesLeft() || (line_extractor.GetChar() != ' ')) in ParseMemoryRegionInfoFromProcMapsLine()
61 if (line_extractor.GetBytesLeft() < 4) in ParseMemoryRegionInfoFromProcMapsLine()
68 const char read_perm_char = line_extractor.GetChar(); in ParseMemoryRegionInfoFromProcMapsLine()
78 const char write_perm_char = line_extractor.GetChar(); in ParseMemoryRegionInfoFromProcMapsLine()
88 const char exec_perm_char = line_extractor.GetChar(); in ParseMemoryRegionInfoFromProcMapsLine()
98 const char sharing_char = line_extractor.GetChar(); in ParseMemoryRegionInfoFromProcMapsLine()
107 line_extractor.GetHexMaxU64(false, 0); // Read the offset in ParseMemoryRegionInfoFromProcMapsLine()
114 line_extractor.SkipSpaces(); in ParseMemoryRegionInfoFromProcMapsLine()
[all …]