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

  /external/lldb/include/lldb/Target/
ThreadSpec.h 61 SetQueueName (const char *queue_name)
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/
ThreadSpec.cpp 92 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/
SBBreakpointLocation.i 92 SetQueueName (const char *queue_name);
SBBreakpoint.i 175 SetQueueName (const char *queue_name);
  /external/lldb/include/lldb/API/
SBBreakpointLocation.h 80 SetQueueName (const char *queue_name);
SBBreakpoint.h 113 SetQueueName (const char *queue_name);
  /external/lldb/include/lldb/Breakpoint/
BreakpointLocation.h 211 SetQueueName (const char *queue_name);
Breakpoint.h 401 SetQueueName (const char *queue_name);
  /external/lldb/source/Breakpoint/
BreakpointLocation.cpp 179 BreakpointLocation::SetQueueName (const char *queue_name)
181 if (queue_name != NULL)
182 GetLocationOptions()->GetThreadSpec()->SetQueueName(queue_name);
188 m_options_ap->GetThreadSpec()->SetQueueName(queue_name);
Breakpoint.cpp 263 Breakpoint::SetQueueName (const char *queue_name)
266 && ::strcmp (m_options.GetThreadSpec()->GetQueueName(), queue_name) == 0)
269 m_options.GetThreadSpec()->SetQueueName (queue_name);
  /external/lldb/source/API/
SBBreakpointLocation.cpp 229 SBBreakpointLocation::SetQueueName (const char *queue_name)
234 m_opaque_sp->SetQueueName (queue_name);
SBBreakpoint.cpp 449 SBBreakpoint::SetQueueName (const char *queue_name)
453 log->Printf ("SBBreakpoint(%p)::SetQueueName (%s)", m_opaque_sp.get(), queue_name);
457 m_opaque_sp->GetOptions()->GetThreadSpec()->SetQueueName (queue_name);

Completed in 158 milliseconds