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

References

tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
  604   response.PutChar('T');
  613   response.PutHex8(signum & 0xff);
  616   response.Printf("thread:%" PRIx64 ";", tid);
  624       response.PutCString("name:");
  625       response.PutCString(thread_name);
  628       response.PutCString("hexname:");
  629       response.PutStringAsRawHex8(thread_name);
  631     response.PutChar(';');
  643     response.PutCString("threads:");
  651         response.PutChar(',');
  652       response.Printf("%" PRIx64, listed_thread->GetID());
  654     response.PutChar(';');
  666         response.PutCString("jstopinfo:");
  669         response.PutStringAsRawHex8(unescaped_response.GetData());
  670         response.PutChar(';');
  679     response.PutCString("thread-pcs");
  701       response.PutChar(delimiter);
  703       WriteRegisterValueInHexFixedWidth(response, reg_ctx, *reg_info_p,
  707     response.PutChar(';');
  744           response.Printf("%.02x:", *reg_num_p);
  745           WriteRegisterValueInHexFixedWidth(response, reg_ctx, *reg_info_p,
  747           response.PutChar(';');
  762     response.Printf("reason:%s;", reason_str);
  767     response.PutCString("description:");
  768     response.PutStringAsRawHex8(description);
  769     response.PutChar(';');
  772     response.PutCString("metype:");
  773     response.PutHex64(tid_stop_info.details.exception.type);
  774     response.PutCString(";mecount:");
  775     response.PutHex32(tid_stop_info.details.exception.data_count);
  776     response.PutChar(';');
  779       response.PutCString("medata:");
  780       response.PutHex64(tid_stop_info.details.exception.data[i]);
  781       response.PutChar(';');
  785   return SendPacketNoLock(response.GetString());