Home
last modified time | relevance | path

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

/trueos/contrib/llvm/tools/lldb/include/lldb/Target/
HDThreadSpec.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()
HDQueueItem.h199 SetQueueLabel (std::string queue_name) in SetQueueLabel() argument
201 m_queue_label = queue_name; in SetQueueLabel()
211 SetTargetQueueLabel (std::string queue_name) in SetTargetQueueLabel() argument
213 m_target_queue_label = queue_name; in SetTargetQueueLabel()
HDQueue.h43 Queue (lldb::ProcessSP process_sp, lldb::queue_id_t queue_id, const char *queue_name);
/trueos/contrib/llvm/tools/lldb/source/Target/
HDThreadSpec.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()
HDQueue.cpp19 Queue::Queue (ProcessSP process_sp, lldb::queue_id_t queue_id, const char *queue_name) : in Queue() argument
28 if (queue_name) in Queue()
29 m_queue_name = queue_name; in Queue()
/trueos/sys/dev/nvme/
HDnvme_sysctl.c247 char queue_name[QUEUE_NAME_LENGTH]; in nvme_sysctl_initialize_ctrlr() local
291 snprintf(queue_name, QUEUE_NAME_LENGTH, "ioq%d", i); in nvme_sysctl_initialize_ctrlr()
293 queue_name, CTLFLAG_RD, NULL, "IO Queue"); in nvme_sysctl_initialize_ctrlr()
/trueos/contrib/llvm/tools/lldb/source/Breakpoint/
HDBreakpointLocation.cpp192 BreakpointLocation::SetQueueName (const char *queue_name) in SetQueueName() argument
194 if (queue_name != NULL) in SetQueueName()
195 GetLocationOptions()->GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
201 m_options_ap->GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
HDBreakpoint.cpp275 Breakpoint::SetQueueName (const char *queue_name) in SetQueueName() argument
278 && ::strcmp (m_options.GetThreadSpec()->GetQueueName(), queue_name) == 0) in SetQueueName()
281 m_options.GetThreadSpec()->SetQueueName (queue_name); in SetQueueName()
/trueos/contrib/llvm/tools/lldb/source/API/
HDSBBreakpointLocation.cpp229 SBBreakpointLocation::SetQueueName (const char *queue_name) in SetQueueName() argument
234 m_opaque_sp->SetQueueName (queue_name); in SetQueueName()
HDSBBreakpoint.cpp450 SBBreakpoint::SetQueueName (const char *queue_name) in SetQueueName() argument
454 log->Printf ("SBBreakpoint(%p)::SetQueueName (%s)", m_opaque_sp.get(), queue_name); in SetQueueName()
458 m_opaque_sp->GetOptions()->GetThreadSpec()->SetQueueName (queue_name); in SetQueueName()
HDSBThread.cpp1316 const char *queue_name = new_thread_sp->GetQueueName(); in GetExtendedBacktraceThread() local
1317 if (queue_name == NULL) in GetExtendedBacktraceThread()
1318 queue_name = ""; in GetExtendedBacktraceThread()
1319 … name '%s'", exe_ctx.GetThreadPtr(), new_thread_sp.get(), new_thread_sp->GetQueueID(), queue_name); in GetExtendedBacktraceThread()
/trueos/contrib/llvm/tools/lldb/include/lldb/API/
HDSBBreakpointLocation.h80 SetQueueName (const char *queue_name);
HDSBBreakpoint.h113 SetQueueName (const char *queue_name);
/trueos/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
HDBreakpointLocation.h211 SetQueueName (const char *queue_name);
HDBreakpoint.h419 SetQueueName (const char *queue_name);
/trueos/contrib/llvm/tools/lldb/source/Core/
HDIOHandler.cpp4181 const char *queue_name = thread_sp->GetQueueName(); in MenuDelegateAction() local
4182 if (queue_name && queue_name[0]) in MenuDelegateAction()
4183 thread_menu_title.Printf (" %s", queue_name); in MenuDelegateAction()