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
 1526     thread_action.tid = LLDB_INVALID_THREAD_ID;
 1527     thread_action.state = eStateInvalid;
 1528     thread_action.signal = LLDB_INVALID_SIGNAL_NUMBER;
 1533       thread_action.signal = packet.GetHexMaxU32(false, 0);
 1534       if (thread_action.signal == 0)
 1541       thread_action.state = eStateRunning;
 1545       thread_action.signal = packet.GetHexMaxU32(false, 0);
 1546       if (thread_action.signal == 0)
 1553       thread_action.state = eStateStepping;
 1566       thread_action.tid = packet.GetHexMaxU32(false, LLDB_INVALID_THREAD_ID);
 1567       if (thread_action.tid == LLDB_INVALID_THREAD_ID)
 1572     thread_actions.Append(thread_action);