HomeSort by relevance Sort by last modified time
    Searched refs:packet_cstr (Results 1 - 4 of 4) sorted by null

  /external/lldb/source/Utility/
StringExtractorGDBRemote.cpp 56 #define PACKET_MATCHES(s) ((packet_size == (sizeof(s)-1)) && (strcmp((packet_cstr),(s)) == 0))
57 #define PACKET_STARTS_WITH(s) ((packet_size >= (sizeof(s)-1)) && ::strncmp(packet_cstr, s, (sizeof(s)-1))==0)
64 const char *packet_cstr = m_packet.c_str(); local
83 switch (packet_cstr[1])
101 switch (packet_cstr[1])
StringExtractor.h 33 StringExtractor(const char *packet_cstr);
StringExtractor.cpp 86 StringExtractor::StringExtractor(const char *packet_cstr) :
90 if (packet_cstr)
91 m_packet.assign (packet_cstr);
  /external/lldb/source/Plugins/Process/gdb-remote/
ProcessGDBRemote.cpp 3170 const char *packet_cstr = command.GetArgumentAtIndex(0); local
3228 const char *packet_cstr = packet.GetString().c_str(); local
    [all...]

Completed in 317 milliseconds