Home
last modified time | relevance | path

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

12

/llvm-project-15.0.7/lldb/source/Target/
H A DThreadSpec.cpp27 llvm::StringRef queue_name; in CreateFromStructuredData() local
46 queue_name); in CreateFromStructuredData()
48 thread_spec_up->SetQueueName(queue_name); in CreateFromStructuredData()
103 const char *queue_name = thread.GetQueueName(); in QueueNameMatches() local
104 return QueueNameMatches(queue_name); in QueueNameMatches()
150 const char *queue_name = GetQueueName(); in GetDescription() local
151 if (queue_name) in GetDescription()
152 s->Printf("queue name: \"%s\" ", queue_name); in GetDescription()
H A DQueue.cpp19 const char *queue_name) in Queue() argument
24 if (queue_name) in Queue()
25 m_queue_name = queue_name; in Queue()
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DThreadSpec.h51 void SetQueueName(llvm::StringRef queue_name) { in SetQueueName() argument
52 m_queue_name = std::string(queue_name); in SetQueueName()
92 bool QueueNameMatches(const char *queue_name) const { in QueueNameMatches() argument
95 else if (queue_name == nullptr) in QueueNameMatches()
98 return m_queue_name == queue_name; in QueueNameMatches()
H A DQueueItem.h126 void SetQueueLabel(std::string queue_name) { m_queue_label = queue_name; } in SetQueueLabel() argument
130 void SetTargetQueueLabel(std::string queue_name) { in SetTargetQueueLabel() argument
131 m_target_queue_label = queue_name; in SetTargetQueueLabel()
H A DQueue.h35 const char *queue_name);
/llvm-project-15.0.7/lldb/source/Plugins/Process/scripted/
H A DScriptedThread.cpp95 llvm::Optional<std::string> queue_name = GetInterface()->GetQueue(); in GetQueueName() local
96 if (!queue_name) in GetQueueName()
98 return ConstString(queue_name->c_str()).AsCString(); in GetQueueName()
/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_names/
H A DTestBreakpointNames.py86 self.queue_name = "Blooey"
194 self.assertEqual(bp_object.GetQueueName(), self.queue_name, "Queue Name")
224 bp_name.SetQueueName(self.queue_name)
269 self.queue_name,
/llvm-project-15.0.7/lldb/source/API/
H A DSBBreakpointLocation.cpp359 void SBBreakpointLocation::SetQueueName(const char *queue_name) { in SetQueueName() argument
360 LLDB_INSTRUMENT_VA(this, queue_name); in SetQueueName()
366 loc_sp->SetQueueName(queue_name); in SetQueueName()
H A DSBBreakpointName.cpp431 void SBBreakpointName::SetQueueName(const char *queue_name) { in SetQueueName() argument
432 LLDB_INSTRUMENT_VA(this, queue_name); in SetQueueName()
441 bp_name->GetOptions().GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
H A DSBBreakpoint.cpp428 void SBBreakpoint::SetQueueName(const char *queue_name) { in SetQueueName() argument
429 LLDB_INSTRUMENT_VA(this, queue_name); in SetQueueName()
435 bkpt_sp->GetOptions().GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
/llvm-project-15.0.7/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp168 void BreakpointLocation::SetQueueName(const char *queue_name) { in SetQueueName() argument
169 if (queue_name != nullptr) in SetQueueName()
170 GetLocationOptions().GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
175 m_options_up->GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
H A DBreakpoint.cpp387 void Breakpoint::SetQueueName(const char *queue_name) { in SetQueueName() argument
389 ::strcmp(m_options.GetThreadSpec()->GetQueueName(), queue_name) == 0) in SetQueueName()
392 m_options.GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBBreakpointName.i81 void SetQueueName(const char *queue_name);
H A DSBBreakpointLocation.i124 SetQueueName (const char *queue_name);
H A DSBBreakpoint.i175 SetQueueName (const char *queue_name);
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBBreakpointLocation.h79 void SetQueueName(const char *queue_name);
H A DSBBreakpointName.h80 void SetQueueName(const char *queue_name);
H A DSBBreakpoint.h91 void SetQueueName(const char *queue_name);
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DThreadGDBRemote.cpp77 void ThreadGDBRemote::SetQueueInfo(std::string &&queue_name, in SetQueueInfo() argument
81 m_dispatch_queue_name = queue_name; in SetQueueInfo()
H A DThreadGDBRemote.h82 void SetQueueInfo(std::string &&queue_name, lldb::QueueKind queue_kind,
H A DProcessGDBRemote.cpp1654 std::string &queue_name, QueueKind queue_kind, uint64_t queue_serial) { in SetThreadStopInfo() argument
1715 gdb_thread->SetQueueInfo(std::move(queue_name), queue_kind, in SetThreadStopInfo()
1971 std::string queue_name; in SetThreadStopInfo() local
1982 &queue_name, &queue_kind, &queue_serial_number]( in SetThreadStopInfo()
2006 queue_name = std::string(object->GetStringValue()); in SetThreadStopInfo()
2090 queue_name, queue_kind, queue_serial_number); in SetThreadStopInfo()
2129 std::string queue_name; in SetThreadStopInfo() local
2192 name_extractor.GetHexByteString(queue_name); in SetThreadStopInfo()
2304 associated_with_dispatch_queue, dispatch_queue_t, queue_name, in SetThreadStopInfo()
/llvm-project-15.0.7/lldb/include/lldb/Breakpoint/
H A DBreakpointLocation.h154 void SetQueueName(const char *queue_name);
H A DBreakpoint.h369 void SetQueueName(const char *queue_name);
/llvm-project-15.0.7/lldb/tools/debugserver/source/
H A DRNBRemote.h350 std::string &queue_name, uint64_t &queue_width,
H A DRNBRemote.cpp2606 std::string &queue_name, uint64_t &queue_width, in GetThreadQueueInfo() argument
2608 queue_name.clear(); in GetThreadQueueInfo()
2628 queue_name = DNBProcessMemoryReadCString(pid, label_addr); in GetThreadQueueInfo()
2632 queue_name = DNBProcessMemoryReadCStringFixed( in GetThreadQueueInfo()
5498 std::string queue_name; in GetJSONThreadsInfo() local
5504 queue_name, queue_width, queue_serialnum); in GetJSONThreadsInfo()
5505 if (dispatch_queue_t == 0 && queue_name.empty() && in GetJSONThreadsInfo()
5517 if (!queue_name.empty()) in GetJSONThreadsInfo()
5518 thread_dict_sp->AddStringItem("qname", queue_name); in GetJSONThreadsInfo()

12