Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DStringExtractor.cpp1 //===-- StringExtractor.cpp -----------------------------------------------===//
9 #include "lldb/Utility/StringExtractor.h"
28 // StringExtractor constructor
29 StringExtractor::StringExtractor() : m_packet() {} in StringExtractor() function in StringExtractor
31 StringExtractor::StringExtractor(llvm::StringRef packet_str) : m_packet() { in StringExtractor() function in StringExtractor
35 StringExtractor::StringExtractor(const char *packet_cstr) : m_packet() { in StringExtractor() function in StringExtractor
41 StringExtractor
[all...]
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStringExtractor.h19 class StringExtractor {
23 StringExtractor();
24 StringExtractor(llvm::StringRef packet_str);
25 StringExtractor(const char *packet_cstr);
26 virtual ~StringExtractor();
H A DStringExtractorGDBRemote.h22 class StringExtractorGDBRemote : public StringExtractor {
30 : StringExtractor(str), m_validator(nullptr) {} in StringExtractorGDBRemote()
33 : StringExtractor(cstr), m_validator(nullptr) {} in StringExtractorGDBRemote()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugMacro.h122 DataExtractor StringExtractor, in parseMacinfo()
124 return parseImpl(Units, StringExtractor, MacroData, /*IsMacro=*/true);
146 std::optional<DataExtractor> StringExtractor,
116 parseMacro(DWARFUnitVector::compile_unit_range Units,DataExtractor StringExtractor,DWARFDataExtractor MacroData) parseMacro() argument
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugMacro.cpp109 std::optional<DataExtractor> StringExtractor, DWARFDataExtractor Data, in parseImpl() argument
182 assert(StringExtractor && "String Extractor not found"); in parseImpl()
183 E.MacroStr = StringExtractor->getCStr(&StrOffset); in parseImpl()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DThreadGDBRemote.h19 class StringExtractor; variable
115 void SetStopInfoFromPacket(StringExtractor &stop_packet, uint32_t stop_id);
H A DGDBRemoteCommunicationClient.cpp1245 StringExtractor extractor(value); in GetHostInfo()
1249 StringExtractor extractor(value); in GetHostInfo()
1253 StringExtractor extractor(value); in GetHostInfo()
1257 StringExtractor extractor(value); in GetHostInfo()
1261 StringExtractor extractor(value); in GetHostInfo()
2000 StringExtractor extractor; in DecodeProcessInfoResponse()
2033 StringExtractor extractor(value); in DecodeProcessInfoResponse()
2038 StringExtractor extractor(value); in DecodeProcessInfoResponse()
2051 StringExtractor extractor(hex_arg); in DecodeProcessInfoResponse()
2141 StringExtractor extractor; in GetCurrentProcessInfo()
[all …]
H A DGDBRemoteRegisterContext.h23 class StringExtractor; variable
H A DProcessGDBRemote.cpp1640 StringExtractor reg_value_extractor(pair.second); in ParseExpeditedRegisters()
1813 StringExtractor desc_extractor(description.c_str()); in SetThreadStopInfo()
1863 StringExtractor desc_extractor(description.c_str()); in SetThreadStopInfo()
1871 StringExtractor desc_extractor(description.c_str()); in SetThreadStopInfo()
2086 StringExtractor bytes(str); in SetThreadStopInfo()
2117 StateType ProcessGDBRemote::SetThreadStopInfo(StringExtractor &stop_packet) { in SetThreadStopInfo()
2193 StringExtractor json_extractor(value); in SetThreadStopInfo()
2202 StringExtractor name_extractor(value); in SetThreadStopInfo()
2215 StringExtractor name_extractor(value); in SetThreadStopInfo()
2230 StringExtractor desc_extractor(value); in SetThreadStopInfo()
[all …]
H A DProcessGDBRemote.h359 lldb::StateType SetThreadStopInfo(StringExtractor &stop_packet);
H A DGDBRemoteCommunicationServerLLGS.cpp3236 StringExtractor offset_data(fields[4]); in Handle_qXfer()
3531 StringExtractor arg_ext{hex_arg}; in Handle_vRun()
3930 StringExtractor(x).GetHexByteString(path_hint); in Handle_qSaveCore()
H A DGDBRemoteCommunicationServerCommon.cpp344 StringExtractor extractor(value); in Handle_qfProcessInfo()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DLinuxProcMaps.cpp30 StringExtractor line_extractor(maps_line); in ParseMemoryRegionInfoFromProcMapsLine()
/freebsd/lib/clang/liblldb/
H A DMakefile729 SRCS+= Utility/StringExtractor.cpp