HomeSort by relevance Sort by last modified time
    Searched refs:thread_action (Results 1 - 6 of 6) sorted by null

  /external/lldb/tools/debugserver/source/MacOSX/
MachThread.cpp 382 MachThread::ThreadWillResume(const DNBThreadResumeAction *thread_action, bool others_stopped)
384 if (thread_action->addr != INVALID_NUB_ADDRESS)
385 SetPC (thread_action->addr);
387 SetState (thread_action->state);
388 switch (thread_action->state)
MachThread.h 77 void ThreadWillResume (const DNBThreadResumeAction *thread_action, bool others_stopped = false);
MachThreadList.cpp 424 const DNBThreadResumeAction *thread_action = thread_actions.GetActionForThread (thread->ThreadID(), true); local
426 assert (thread_action);
430 thread->ThreadWillResume (thread_action, others_stopped);
MachProcess.cpp 525 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);
    [all...]
  /external/lldb/tools/debugserver/source/
RNBRemote.cpp 3075 DNBThreadResumeAction thread_action; local
    [all...]
  /external/lldb/examples/python/
gdbremote.py 543 for thread_action in string.split(args[1:], ';'):
544 (short_action, thread) = string.split(thread_action, ':')
    [all...]

Completed in 696 milliseconds