Searched refs:queue_name (Results 1 - 12 of 12) sorted by relevance

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

Completed in 294 milliseconds