Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/lldb/source/Utility/
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()
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()
/openbsd/src/gnu/llvm/lldb/tools/debugserver/source/
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()
DStdStringExtractor.h23 StdStringExtractor(const char *packet_cstr);
/openbsd/src/gnu/llvm/lldb/include/lldb/Utility/
DStringExtractor.h25 StringExtractor(const char *packet_cstr);
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.cpp5044 const char *packet_cstr = command.GetArgumentAtIndex(0); in DoExecute() local
5047 packet_cstr, response, process->GetInterruptTimeout()); in DoExecute()
5050 output_strm.Printf(" packet: %s\n", packet_cstr); in DoExecute()
5053 if (strstr(packet_cstr, "qGetProfileData") != nullptr) { in DoExecute()