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
  593   if (!thread->GetStopReason(tid_stop_info, description))
  605   int signum = tid_stop_info.details.signal.signo;
  609       m_debugged_process_up->GetID(), tid, signum, int(tid_stop_info.reason),
  610       tid_stop_info.details.exception.type);
  760   const char *reason_str = GetStopReasonString(tid_stop_info.reason);
  770   } else if ((tid_stop_info.reason == eStopReasonException) &&
  771              tid_stop_info.details.exception.type) {
  773     response.PutHex64(tid_stop_info.details.exception.type);
  775     response.PutHex32(tid_stop_info.details.exception.data_count);
  778     for (uint32_t i = 0; i < tid_stop_info.details.exception.data_count; ++i) {
  780       response.PutHex64(tid_stop_info.details.exception.data[i]);