Home
last modified time | relevance | path

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

/freebsd/contrib/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[1] <= '4') in GetServerPacketType()
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()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStringExtractor.h25 StringExtractor(const char *packet_cstr);
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp5715 const char *packet_cstr = command.GetArgumentAtIndex(0); in DoExecute() local
5718 packet_cstr, response, process->GetInterruptTimeout()); in DoExecute()
5721 output_strm.Printf(" packet: %s\n", packet_cstr); in DoExecute()
5724 if (strstr(packet_cstr, "qGetProfileData") != nullptr) { in DoExecute()