Home
last modified time | relevance | path

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

/llvm-project/lldb/source/Utility/
H A DStringExtractorGDBRemote.cpp60 ((packet_size == (sizeof(s) - 1)) && (strcmp((packet_cstr), (s)) == 0)) in GetServerPacketType()
63 ::strncmp(packet_cstr, s, (sizeof(s) - 1)) == 0) in GetServerPacketType()
70 const char *packet_cstr = m_packet.c_str(); in GetServerPacketType() local
96 switch (packet_cstr[1]) { in GetServerPacketType()
172 switch (packet_cstr[1]) { in GetServerPacketType()
391 switch (packet_cstr[1]) { in GetServerPacketType()
461 if (packet_cstr[1] >= '0' && packet_cstr[1] <= '4') in GetServerPacketType()
466 if (packet_cstr[1] >= '0' && packet_cstr[ in GetServerPacketType()
[all...]
H A DStringExtractor.cpp35 StringExtractor::StringExtractor(const char *packet_cstr) : m_packet() { in StringExtractor() argument
36 if (packet_cstr) in StringExtractor()
37 m_packet.assign(packet_cstr); in StringExtractor()
/llvm-project/lldb/tools/debugserver/source/
H A DStdStringExtractor.cpp26 StdStringExtractor::StdStringExtractor(const char *packet_cstr) in StdStringExtractor() argument
28 if (packet_cstr) in StdStringExtractor()
29 m_packet.assign(packet_cstr); in StdStringExtractor()
H A DStdStringExtractor.h23 StdStringExtractor(const char *packet_cstr);
/llvm-project/lldb/include/lldb/Utility/
H A DStringExtractor.h25 StringExtractor(const char *packet_cstr);
/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp5644 const char *packet_cstr = command.GetArgumentAtIndex(0); in DoExecute()
5647 packet_cstr, response, process->GetInterruptTimeout());
5650 output_strm.Printf(" packet: %s\n", packet_cstr);
5653 if (strstr(packet_cstr, "qGetProfileData") != nullptr) { in CommandObjectProcessGDBRemotePacket()
5582 const char *packet_cstr = command.GetArgumentAtIndex(0); DoExecute() local