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 DGDBRemoteRegisterContext.h23 class StringExtractor; variable
H A DGDBRemoteCommunicationClient.cpp1268 StringExtractor extractor(value); in GetHostInfo()
1272 StringExtractor extractor(value); in GetHostInfo()
1276 StringExtractor extractor(value); in GetHostInfo()
1280 StringExtractor extractor(value); in GetHostInfo()
1284 StringExtractor extractor(value); in GetHostInfo()
2020 StringExtractor extractor; in DecodeProcessInfoResponse()
2053 StringExtractor extractor(value); in DecodeProcessInfoResponse()
2058 StringExtractor extractor(value); in DecodeProcessInfoResponse()
2071 StringExtractor extractor(hex_arg); in DecodeProcessInfoResponse()
2160 StringExtractor extractor; in GetCurrentProcessInfo()
[all …]
H A DProcessGDBRemote.cpp1695 StringExtractor reg_value_extractor(pair.second); in ParseExpeditedRegisters()
1864 StringExtractor desc_extractor(description.c_str()); in SetThreadStopInfo()
1918 StringExtractor desc_extractor(description.c_str()); in SetThreadStopInfo()
1926 StringExtractor desc_extractor(description.c_str()); in SetThreadStopInfo()
2169 StringExtractor bytes(str); in SetThreadStopInfo()
2200 StateType ProcessGDBRemote::SetThreadStopInfo(StringExtractor &stop_packet) { in SetThreadStopInfo()
2276 StringExtractor json_extractor(value); in SetThreadStopInfo()
2285 StringExtractor name_extractor(value); in SetThreadStopInfo()
2297 StringExtractor name_extractor(value); in SetThreadStopInfo()
2312 StringExtractor desc_extractor(value); in SetThreadStopInfo()
[all …]
H A DProcessGDBRemote.h358 lldb::StateType SetThreadStopInfo(StringExtractor &stop_packet);
H A DGDBRemoteCommunicationServerLLGS.cpp3237 StringExtractor offset_data(fields[4]); in Handle_qXfer()
3532 StringExtractor arg_ext{hex_arg}; in Handle_vRun()
3932 StringExtractor(x).GetHexByteString(path_hint); in Handle_qSaveCore()
H A DGDBRemoteCommunicationServerCommon.cpp347 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 DMakefile753 SRCS+= Utility/StringExtractor.cpp