OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:thread_actions
(Results
1 - 6
of
6
) sorted by null
/external/lldb/tools/debugserver/source/MacOSX/
MachThreadList.cpp
370
MachThreadList::ProcessWillResume(MachProcess *process, const DNBThreadResumeActions &
thread_actions
)
381
if (
thread_actions
.GetSize() > 0
382
&&
thread_actions
.NumActionsWithState(eStateStepping) +
thread_actions
.NumActionsWithState (eStateRunning) == 1)
385
const DNBThreadResumeAction *action_ptr =
thread_actions
.GetFirst();
386
size_t num_actions =
thread_actions
.GetSize();
424
const DNBThreadResumeAction *thread_action =
thread_actions
.GetActionForThread (thread->ThreadID(), true);
MachThreadList.h
34
void ProcessWillResume (MachProcess *process, const DNBThreadResumeActions &
thread_actions
);
MachProcess.h
95
bool Resume (const DNBThreadResumeActions&
thread_actions
);
MachProcess.cpp
380
MachProcess::Resume (const DNBThreadResumeActions&
thread_actions
)
387
m_thread_actions =
thread_actions
;
[
all
...]
/external/lldb/tools/debugserver/source/
RNBRemote.cpp
3066
DNBThreadResumeActions
thread_actions
;
local
3544
DNBThreadResumeActions
thread_actions
;
local
3758
DNBThreadResumeActions
thread_actions
;
local
[
all
...]
DNB.cpp
826
DNBThreadResumeActions
thread_actions
(actions, num_actions);
830
if (
thread_actions
.IsEmpty())
833
thread_actions
.SetDefaultThreadActionIfNeeded (eStateRunning, 0);
839
thread_actions
.SetDefaultThreadActionIfNeeded (eStateStopped, 0);
841
return procSP->Resume (
thread_actions
);
[
all
...]
Completed in 222 milliseconds