Home
last modified time | relevance | path

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

/external/lldb/source/Utility/
DStringExtractorGDBRemote.cpp56 #define PACKET_MATCHES(s) ((packet_size == (sizeof(s)-1)) && (strcmp((packet_cstr),(s)) == 0)) in GetServerPacketType()
57 #define PACKET_STARTS_WITH(s) ((packet_size >= (sizeof(s)-1)) && ::strncmp(packet_cstr, s, (sizeof(… in GetServerPacketType()
64 const char *packet_cstr = m_packet.c_str(); in GetServerPacketType() local
83 switch (packet_cstr[1]) in GetServerPacketType()
101 switch (packet_cstr[1]) in GetServerPacketType()
DStringExtractor.cpp86 StringExtractor::StringExtractor(const char *packet_cstr) : in StringExtractor() argument
90 if (packet_cstr) in StringExtractor()
91 m_packet.assign (packet_cstr); in StringExtractor()
DStringExtractor.h33 StringExtractor(const char *packet_cstr);
/external/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.cpp3170 const char *packet_cstr = command.GetArgumentAtIndex(0); in DoExecute() local
3173 … process->GetGDBRemote().SendPacketAndWaitForResponse(packet_cstr, response, send_async); in DoExecute()
3176 output_strm.Printf (" packet: %s\n", packet_cstr); in DoExecute()
3179 if (strstr(packet_cstr, "qGetProfileData") != NULL) in DoExecute()
3228 const char *packet_cstr = packet.GetString().c_str(); in DoExecute() local
3232 process->GetGDBRemote().SendPacketAndWaitForResponse(packet_cstr, response, send_async); in DoExecute()
3235 output_strm.Printf (" packet: %s\n", packet_cstr); in DoExecute()