Lines Matching defs:thread_action
1725 ResumeAction thread_action;
1726 thread_action.tid = LLDB_INVALID_THREAD_ID;
1727 thread_action.state = eStateInvalid;
1728 thread_action.signal = LLDB_INVALID_SIGNAL_NUMBER;
1733 thread_action.signal = packet.GetHexMaxU32(false, 0);
1734 if (thread_action.signal == 0)
1741 thread_action.state = eStateRunning;
1745 thread_action.signal = packet.GetHexMaxU32(false, 0);
1746 if (thread_action.signal == 0)
1753 thread_action.state = eStateStepping;
1758 thread_action.state = eStateSuspended;
1783 if (thread_action.state == eStateSuspended &&
1801 thread_action.tid = tid;
1808 thread_actions[process_it.first].Append(thread_action);
1810 thread_actions[pid].Append(thread_action);