OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetThreadSpec
(Results
1 - 8
of
8
) sorted by null
/external/lldb/source/Breakpoint/
Breakpoint.cpp
207
if (m_options.
GetThreadSpec
()->GetTID() == thread_id)
210
m_options.
GetThreadSpec
()->SetTID(thread_id);
226
if (m_options.
GetThreadSpec
()->GetIndex() == index)
229
m_options.
GetThreadSpec
()->SetIndex(index);
245
if (m_options.
GetThreadSpec
()->GetName() != NULL
246
&& ::strcmp (m_options.
GetThreadSpec
()->GetName(), thread_name) == 0)
249
m_options.
GetThreadSpec
()->SetName (thread_name);
265
if (m_options.
GetThreadSpec
()->GetQueueName() != NULL
266
&& ::strcmp (m_options.
GetThreadSpec
()->GetQueueName(), queue_name) == 0)
269
m_options.
GetThreadSpec
()->SetQueueName (queue_name)
[
all
...]
BreakpointLocation.cpp
133
GetLocationOptions()->
GetThreadSpec
()->SetIndex(index);
139
m_options_ap->
GetThreadSpec
()->SetIndex(index);
158
GetLocationOptions()->
GetThreadSpec
()->SetName(thread_name);
164
m_options_ap->
GetThreadSpec
()->SetName(thread_name);
182
GetLocationOptions()->
GetThreadSpec
()->SetQueueName(queue_name);
188
m_options_ap->
GetThreadSpec
()->SetQueueName(queue_name);
WatchpointOptions.cpp
152
WatchpointOptions::
GetThreadSpec
()
163
GetThreadSpec
()->SetTID(thread_id);
BreakpointOptions.cpp
196
BreakpointOptions::
GetThreadSpec
()
207
GetThreadSpec
()->SetTID(thread_id);
/external/lldb/include/lldb/Breakpoint/
WatchpointOptions.h
168
GetThreadSpec
();
BreakpointOptions.h
271
GetThreadSpec
();
/external/lldb/source/API/
SBBreakpoint.cpp
393
m_opaque_sp->GetOptions()->
GetThreadSpec
()->SetIndex (index);
426
m_opaque_sp->GetOptions()->
GetThreadSpec
()->SetName (thread_name);
457
m_opaque_sp->GetOptions()->
GetThreadSpec
()->SetQueueName (queue_name);
/external/lldb/source/Commands/
CommandObjectBreakpoint.cpp
518
bp->GetOptions()->
GetThreadSpec
()->SetIndex(m_options.m_thread_index);
521
bp->GetOptions()->
GetThreadSpec
()->SetName(m_options.m_thread_name.c_str());
524
bp->GetOptions()->
GetThreadSpec
()->SetQueueName(m_options.m_queue_name.c_str());
[
all
...]
Completed in 185 milliseconds