Home
last modified time | relevance | path

Searched refs:queue_name (Results 1 – 13 of 13) sorted by relevance

/external/lldb/include/lldb/Target/
DThreadSpec.h61 SetQueueName (const char *queue_name) in SetQueueName() argument
63 m_queue_name = queue_name; in SetQueueName()
123 QueueNameMatches (const char *queue_name) const in QueueNameMatches() argument
127 else if (queue_name == NULL) in QueueNameMatches()
130 return m_queue_name == queue_name; in QueueNameMatches()
/external/lldb/source/Target/
DThreadSpec.cpp92 const char *queue_name = thread.GetQueueName(); in QueueNameMatches() local
93 return QueueNameMatches (queue_name); in QueueNameMatches()
152 const char *queue_name = GetQueueName(); in GetDescription() local
153 if (queue_name) in GetDescription()
154 s->Printf ("queue name: \"%s\" ", queue_name); in GetDescription()
/external/lldb/source/Breakpoint/
DBreakpointLocation.cpp179 BreakpointLocation::SetQueueName (const char *queue_name) in SetQueueName() argument
181 if (queue_name != NULL) in SetQueueName()
182 GetLocationOptions()->GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
188 m_options_ap->GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
DBreakpoint.cpp263 Breakpoint::SetQueueName (const char *queue_name) in SetQueueName() argument
266 && ::strcmp (m_options.GetThreadSpec()->GetQueueName(), queue_name) == 0) in SetQueueName()
269 m_options.GetThreadSpec()->SetQueueName (queue_name); in SetQueueName()
/external/lldb/source/API/
DSBBreakpointLocation.cpp229 SBBreakpointLocation::SetQueueName (const char *queue_name) in SetQueueName() argument
234 m_opaque_sp->SetQueueName (queue_name); in SetQueueName()
DSBBreakpoint.cpp449 SBBreakpoint::SetQueueName (const char *queue_name) in SetQueueName() argument
453 log->Printf ("SBBreakpoint(%p)::SetQueueName (%s)", m_opaque_sp.get(), queue_name); in SetQueueName()
457 m_opaque_sp->GetOptions()->GetThreadSpec()->SetQueueName (queue_name); in SetQueueName()
/external/lldb/scripts/Python/interface/
DSBBreakpointLocation.i92 SetQueueName (const char *queue_name);
DSBBreakpoint.i175 SetQueueName (const char *queue_name);
/external/lldb/include/lldb/API/
DSBBreakpointLocation.h80 SetQueueName (const char *queue_name);
DSBBreakpoint.h113 SetQueueName (const char *queue_name);
/external/lldb/include/lldb/Breakpoint/
DBreakpointLocation.h211 SetQueueName (const char *queue_name);
DBreakpoint.h401 SetQueueName (const char *queue_name);
/external/lldb/source/Host/macosx/
DHost.mm172 const char *queue_name = dispatch_queue_get_label (current_queue);
173 if (queue_name && queue_name[0])
175 thread_name = queue_name;