reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/Utility/StringExtractor.h
   58   char GetChar(char fail_value = '\0');

References

tools/lldb/source/Plugins/Process/Utility/LinuxProcMaps.cpp
   32   if (!line_extractor.GetBytesLeft() || (line_extractor.GetChar() != '-'))
   40   if (!line_extractor.GetBytesLeft() || (line_extractor.GetChar() != ' '))
   58   const char read_perm_char = line_extractor.GetChar();
   67   const char write_perm_char = line_extractor.GetChar();
   76   const char exec_perm_char = line_extractor.GetChar();
   84   line_extractor.GetChar();              // Read the private bit
   88   line_extractor.GetChar();              // Read the device id separator
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.cpp
   73     const char stop_type = response.GetChar();
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
  215     response.GetChar();
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
  719       if (response.GetChar() == 'Q') {
  720         if (response.GetChar() == 'C') {
  755     if (response.GetChar() == 'E') {
 1117   if (response.GetChar() == 'Q' && response.GetChar() == 'C')
 1117   if (response.GetChar() == 'Q' && response.GetChar() == 'C')
 2755       char ch = response.GetChar();
 2765           ch = response.GetChar(); // Skip the command separator
 2831     if (response.GetChar() != 'F')
 2833     if (response.GetChar() != ',')
 2840     if (response.GetChar() != ',')
 2845     if (response.GetChar() != ',')
 2871   if (response.GetChar() != 'F')
 2893   if (response.GetChar() != 'F')
 2902   if (response.GetChar() != 'F')
 2907   if (response.GetChar() == ',') {
 2961     if (response.GetChar() != 'F')
 2980     if (response.GetChar() != 'F') {
 2986         if (response.GetChar() == ',') {
 3015     if (response.GetChar() != 'F')
 3024       response.GetChar(); // skip the semicolon
 3049     if (response.GetChar() != 'F') {
 3056       if (response.GetChar() == ',') {
 3084     if (response.GetChar() == 'F') {
 3088         if (response.GetChar() == ',') {
 3115     if (response.GetChar() == 'F') {
 3119         if (response.GetChar() == ',') {
 3145     if (response.GetChar() != 'F')
 3147     if (response.GetChar() != ',')
 3149     bool retcode = (response.GetChar() != '0');
 3164     if (response.GetChar() != 'F')
 3166     if (response.GetChar() != ',')
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
  341   if (packet.GetChar() == ':') {
  510     if (packet.GetChar() == ',') {
  516       if (packet.GetChar() == ',') {
  575   if (packet.GetChar() == ',') {
  577     if (packet.GetChar() == ',') {
  612   if (packet.GetChar() == ',') {
  614     if (packet.GetChar() == ',') {
  703   packet.GetChar(); // Skip ',' char
  735     if (packet.GetChar() == ',') {
  738       if (packet.GetChar() == ',')
  799   if (packet.GetChar() == ',') {
  819   if (packet.GetChar() == ',') {
 1009       if (packet.GetChar() != ',')
 1019           if (packet.GetChar() != ',')
 1032                 if (packet.GetChar() != ',')
 1078   if (packet.GetChar() != ';')
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
 1522     packet.GetChar();
 1530     const char action = packet.GetChar();
 1564       packet.GetChar();
 2053   if ((packet.GetBytesLeft() < 1) || (packet.GetChar() != '='))
 2141   const char h_variant = packet.GetChar();
 2281   if ((packet.GetBytesLeft() < 1) || (packet.GetChar() != ','))
 2326   char kind = packet.GetChar('?');
 2362   if ((packet.GetBytesLeft() < 1) || (packet.GetChar() != ','))
 2376   if ((packet.GetBytesLeft() < 1) || (packet.GetChar() != ':'))
 2572   if ((packet.GetBytesLeft() < 1) || packet.GetChar() != ',')
 2581   if ((packet.GetBytesLeft() < 1) || packet.GetChar() != ',')
 2658   if ((packet.GetBytesLeft() < 1) || packet.GetChar() != ',')
 2667   if ((packet.GetBytesLeft() < 1) || packet.GetChar() != ',')
 2813   if (offset_data.GetChar() != ',')
 2982   if (!packet.GetBytesLeft() || packet.GetChar() != ';')
 3032     if (packet.GetChar() != ';')
 3113   if (packet.GetChar() != ':')
 3171     char separator = packet.GetChar();
 3238   if (packet.GetBytesLeft() < 1 || packet.GetChar() != ';') {
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
 2161   const char stop_type = stop_packet.GetChar();
 2581         char packet_cmd = response.GetChar(0);
 3777                     response.GetChar('-') == ';') {
tools/lldb/source/Utility/StringExtractorGDBRemote.cpp
  472     if (GetChar() == ';') {