Searched refs:thread_action (Results 1 - 6 of 6) sorted by relevance

/external/lldb/tools/debugserver/source/MacOSX/
H A DMachThread.cpp382 MachThread::ThreadWillResume(const DNBThreadResumeAction *thread_action, bool others_stopped) argument
384 if (thread_action->addr != INVALID_NUB_ADDRESS)
385 SetPC (thread_action->addr);
387 SetState (thread_action->state);
388 switch (thread_action->state)
H A DMachThreadList.cpp424 const DNBThreadResumeAction *thread_action = thread_actions.GetActionForThread (thread->ThreadID(), true); local
426 assert (thread_action);
430 thread->ThreadWillResume (thread_action, others_stopped);
H A DMachThread.h77 void ThreadWillResume (const DNBThreadResumeAction *thread_action, bool others_stopped = false);
H A DMachProcess.cpp525 DNBThreadResumeAction thread_action; local
526 thread_action.tid = m_thread_list.ThreadIDAtIndex (thread_idx);
527 thread_action.state = eStateRunning;
528 thread_action.signal = -1;
529 thread_action.addr = INVALID_NUB_ADDRESS;
531 m_thread_actions.Append (thread_action);
/external/lldb/tools/debugserver/source/
H A DRNBRemote.cpp3075 DNBThreadResumeAction thread_action; local
3076 thread_action.tid = INVALID_NUB_THREAD;
3077 thread_action.state = eStateInvalid;
3078 thread_action.signal = 0;
3079 thread_action.addr = INVALID_NUB_ADDRESS;
3087 thread_action.signal = strtoul (c, &c, 16);
3094 thread_action.state = eStateRunning;
3099 thread_action.signal = strtoul (c, &c, 16);
3106 thread_action.state = eStateStepping;
3116 thread_action
[all...]
/external/lldb/examples/python/
H A Dgdbremote.py543 for thread_action in string.split(args[1:], ';'):
544 (short_action, thread) = string.split(thread_action, ':')

Completed in 111 milliseconds