Home
last modified time | relevance | path

Searched refs:thread_action (Results 1 – 7 of 7) sorted by relevance

/llvm-project/lldb/tools/debugserver/source/MacOSX/
H A DMachThread.cpp361 void MachThread::ThreadWillResume(const DNBThreadResumeAction *thread_action, in ThreadWillResume()
363 if (thread_action->addr != INVALID_NUB_ADDRESS) in ThreadWillResume()
364 SetPC(thread_action->addr); in ThreadWillResume()
366 SetState(thread_action->state); in CurrentBreakpoint()
367 switch (thread_action->state) { in CurrentBreakpoint()
342 ThreadWillResume(const DNBThreadResumeAction * thread_action,bool others_stopped) ThreadWillResume() argument
H A DMachThreadList.cpp426 const DNBThreadResumeAction *thread_action = in ProcessWillResume() local
429 assert(thread_action); in ProcessWillResume()
433 thread->ThreadWillResume(thread_action, others_stopped); in ProcessWillResume()
H A DMachThread.h84 void ThreadWillResume(const DNBThreadResumeAction *thread_action,
H A DMachProcess.mm1722 DNBThreadResumeAction thread_action;
1723 thread_action.tid = m_thread_list.ThreadIDAtIndex(thread_idx);
1724 thread_action.state = eStateRunning;
1725 thread_action.signal = -1;
1726 thread_action.addr = INVALID_NUB_ADDRESS;
1728 m_thread_actions.Append(thread_action);
/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp1725 ResumeAction thread_action; in Handle_vCont()
1726 thread_action.tid = LLDB_INVALID_THREAD_ID; in Handle_vCont()
1727 thread_action.state = eStateInvalid; in Handle_vCont()
1728 thread_action.signal = LLDB_INVALID_SIGNAL_NUMBER; in Handle_vCont()
1733 thread_action.signal = packet.GetHexMaxU32(false, 0); in Handle_vCont()
1734 if (thread_action.signal == 0) in Handle_vCont()
1741 thread_action.state = eStateRunning; in Handle_vCont()
1745 thread_action.signal = packet.GetHexMaxU32(false, 0); in Handle_vCont()
1746 if (thread_action.signal == 0) in Handle_vCont()
1753 thread_action in Handle_vCont()
1722 ResumeAction thread_action; Handle_vCont() local
[all...]
/llvm-project/lldb/tools/debugserver/source/
H A DRNBRemote.cpp3801 DNBThreadResumeAction thread_action; in HandlePacket_v()
3802 thread_action.tid = INVALID_NUB_THREAD; in HandlePacket_v()
3803 thread_action.state = eStateInvalid; in HandlePacket_v()
3804 thread_action.signal = 0; in HandlePacket_v()
3805 thread_action.addr = INVALID_NUB_ADDRESS; in HandlePacket_v()
3812 thread_action.signal = static_cast<int>(strtoul(c, &c, 16)); in HandlePacket_v()
3820 thread_action.state = eStateRunning; in HandlePacket_v()
3825 thread_action.signal = static_cast<int>(strtoul(c, &c, 16)); in HandlePacket_v()
3833 thread_action.state = eStateStepping; in HandlePacket_v()
3843 thread_action in HandlePacket_v()
3792 DNBThreadResumeAction thread_action; HandlePacket_v() local
[all...]
/llvm-project/lldb/examples/python/
H A Dgdbremote.py869 for thread_action in args[1:].split(";"):
870 (short_action, thread) = thread_action.split(":", 1)