Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/lldb/source/Plugins/Process/Utility/
H A DLinuxProcMaps.cpp30 StringExtractor line_extractor(maps_line); in ParseMemoryRegionInfoFromProcMapsLine() local
40 if (!line_extractor.GetBytesLeft() || (line_extractor.GetChar() != '-')) in ParseMemoryRegionInfoFromProcMapsLine()
49 if (!line_extractor.GetBytesLeft() || (line_extractor.GetChar() != ' ')) in ParseMemoryRegionInfoFromProcMapsLine()
62 if (line_extractor.GetBytesLeft() < 4) in ParseMemoryRegionInfoFromProcMapsLine()
69 const char read_perm_char = line_extractor.GetChar(); in ParseMemoryRegionInfoFromProcMapsLine()
79 const char write_perm_char = line_extractor.GetChar(); in ParseMemoryRegionInfoFromProcMapsLine()
89 const char exec_perm_char = line_extractor.GetChar(); in ParseMemoryRegionInfoFromProcMapsLine()
99 const char sharing_char = line_extractor.GetChar(); in ParseMemoryRegionInfoFromProcMapsLine()
108 line_extractor.GetHexMaxU64(false, 0); // Read the offset in ParseMemoryRegionInfoFromProcMapsLine()
115 line_extractor.SkipSpaces(); in ParseMemoryRegionInfoFromProcMapsLine()
[all …]