Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DThreadSpec.cpp42 llvm::StringRef queue_name; in CreateFromStructuredData() local
61 queue_name); in CreateFromStructuredData()
63 thread_spec_up->SetQueueName(queue_name); in CreateFromStructuredData()
118 const char *queue_name = thread.GetQueueName(); in QueueNameMatches() local
119 return QueueNameMatches(queue_name); in QueueNameMatches()
165 const char *queue_name = GetQueueName(); in GetDescription() local
166 if (queue_name) in GetDescription()
167 s->Printf("queue name: \"%s\" ", queue_name); in GetDescription()
H A DQueue.cpp20 const char *queue_name) in Queue() argument
25 if (queue_name) in Queue()
26 m_queue_name = queue_name; in Queue()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DThreadSpec.h56 void SetQueueName(llvm::StringRef queue_name) { m_queue_name = queue_name; } in SetQueueName() argument
95 bool QueueNameMatches(const char *queue_name) const { in QueueNameMatches() argument
98 else if (queue_name == nullptr) in QueueNameMatches()
101 return m_queue_name == queue_name; in QueueNameMatches()
H A DQueueItem.h141 void SetQueueLabel(std::string queue_name) { m_queue_label = queue_name; } in SetQueueLabel() argument
145 void SetTargetQueueLabel(std::string queue_name) { in SetTargetQueueLabel() argument
146 m_target_queue_label = queue_name; in SetTargetQueueLabel()
H A DQueue.h38 const char *queue_name);
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBQueueItem.cpp119 const char *queue_name = thread_sp->GetQueueName(); in GetExtendedBacktraceThread() local
120 if (queue_name == NULL) in GetExtendedBacktraceThread()
121 queue_name = ""; in GetExtendedBacktraceThread()
127 static_cast<uint64_t>(thread_sp->GetQueueID()), queue_name); in GetExtendedBacktraceThread()
H A DSBBreakpointLocation.cpp304 void SBBreakpointLocation::SetQueueName(const char *queue_name) { in SetQueueName() argument
309 loc_sp->SetQueueName(queue_name); in SetQueueName()
H A DSBBreakpointName.cpp434 void SBBreakpointName::SetQueueName(const char *queue_name) { in SetQueueName() argument
441 LLDB_LOG(log, "Name: {0} queue name: {1}\n", bp_name->GetName(), queue_name); in SetQueueName()
446 bp_name->GetOptions().GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
H A DSBBreakpoint.cpp383 void SBBreakpoint::SetQueueName(const char *queue_name) { in SetQueueName() argument
387 queue_name); in SetQueueName()
391 bkpt_sp->GetOptions()->GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
H A DSBThread.cpp1450 const char *queue_name = new_thread_sp->GetQueueName(); in GetExtendedBacktraceThread() local
1451 if (queue_name == NULL) in GetExtendedBacktraceThread()
1452 queue_name = ""; in GetExtendedBacktraceThread()
1459 new_thread_sp->GetQueueID(), queue_name); in GetExtendedBacktraceThread()
/freebsd-12.1/sys/dev/nvme/
H A Dnvme_sysctl.c302 char queue_name[QUEUE_NAME_LENGTH]; in nvme_sysctl_initialize_ctrlr() local
360 snprintf(queue_name, QUEUE_NAME_LENGTH, "ioq%d", i); in nvme_sysctl_initialize_ctrlr()
362 queue_name, CTLFLAG_RD, NULL, "IO Queue"); in nvme_sysctl_initialize_ctrlr()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp171 void BreakpointLocation::SetQueueName(const char *queue_name) { in SetQueueName() argument
172 if (queue_name != nullptr) in SetQueueName()
173 GetLocationOptions()->GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
178 m_options_ap->GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
H A DBreakpoint.cpp400 void Breakpoint::SetQueueName(const char *queue_name) { in SetQueueName() argument
402 ::strcmp(m_options_up->GetThreadSpec()->GetQueueName(), queue_name) == 0) in SetQueueName()
405 m_options_up->GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DThreadGDBRemote.cpp70 void ThreadGDBRemote::SetQueueInfo(std::string &&queue_name, in SetQueueInfo() argument
74 m_dispatch_queue_name = queue_name; in SetQueueInfo()
H A DThreadGDBRemote.h80 void SetQueueInfo(std::string &&queue_name, lldb::QueueKind queue_kind,
H A DProcessGDBRemote.cpp1809 std::string &queue_name, QueueKind queue_kind, uint64_t queue_serial) { in SetThreadStopInfo() argument
1853 gdb_thread->SetQueueInfo(std::move(queue_name), queue_kind, in SetThreadStopInfo()
2087 std::string queue_name; in SetThreadStopInfo() local
2097 &queue_name, &queue_kind, &queue_serial_number]( in SetThreadStopInfo()
2121 queue_name = object->GetStringValue(); in SetThreadStopInfo()
2204 queue_name, queue_kind, queue_serial_number); in SetThreadStopInfo()
2244 std::string queue_name; in SetThreadStopInfo() local
2313 name_extractor.GetHexByteString(queue_name); in SetThreadStopInfo()
2398 associated_with_dispatch_queue, dispatch_queue_t, queue_name, in SetThreadStopInfo()
H A DProcessGDBRemote.h393 lldb::addr_t dispatch_queue_t, std::string &queue_name,
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBBreakpointLocation.h75 void SetQueueName(const char *queue_name);
H A DSBBreakpointName.h79 void SetQueueName(const char *queue_name);
H A DSBBreakpoint.h88 void SetQueueName(const char *queue_name);
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
H A DBreakpointLocation.h187 void SetQueueName(const char *queue_name);
H A DBreakpoint.h441 void SetQueueName(const char *queue_name);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DIOHandler.cpp3607 const char *queue_name = thread_sp->GetQueueName(); in MenuDelegateAction() local
3608 if (queue_name && queue_name[0]) in MenuDelegateAction()
3609 thread_menu_title.Printf(" %s", queue_name); in MenuDelegateAction()