Home
last modified time | relevance | path

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

12

/llvm-project/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/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/lldb/test/API/functionalities/breakpoint/breakpoint_names/
H A DTestBreakpointNames.py89 self.queue_name = "Blooey"
228 self.assertEqual(bp_object.GetQueueName(), self.queue_name, "Queue Name")
268 bp_name.SetQueueName(self.queue_name)
326 self.queue_name,
/llvm-project/lldb/source/Plugins/Process/scripted/
H A DScriptedThread.cpp101 std::optional<std::string> queue_name = GetInterface()->GetQueue(); in GetQueueName() local
102 if (!queue_name) in GetQueueName()
104 return ConstString(queue_name->c_str()).AsCString(); in GetQueueName()
H A DScriptedProcess.cpp521 if (const char *queue_name = thread_sp->GetQueueName()) { in UpdateQueueListIfNeeded()
523 m_process->shared_from_this(), thread_sp->GetQueueID(), queue_name); in UpdateQueueListIfNeeded()
520 if (const char *queue_name = thread_sp->GetQueueName()) { UpdateQueueListIfNeeded() local
/llvm-project/lldb/source/API/
H A DSBBreakpointLocation.cpp376 void SBBreakpointLocation::SetQueueName(const char *queue_name) { in SetQueueName() argument
377 LLDB_INSTRUMENT_VA(this, queue_name); in SetQueueName()
383 loc_sp->SetQueueName(queue_name); in SetQueueName()
H A DSBBreakpointName.cpp432 void SBBreakpointName::SetQueueName(const char *queue_name) { in SetQueueName() argument
433 LLDB_INSTRUMENT_VA(this, queue_name); in SetQueueName()
442 bp_name->GetOptions().GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
H A DSBBreakpoint.cpp426 void SBBreakpoint::SetQueueName(const char *queue_name) { in SetQueueName() argument
427 LLDB_INSTRUMENT_VA(this, queue_name); in SetQueueName()
433 bkpt_sp->GetOptions().GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp160 void BreakpointLocation::SetQueueName(const char *queue_name) { in SetQueueName() argument
161 if (queue_name != nullptr) in SetQueueName()
162 GetLocationOptions().GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
167 m_options_up->GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
H A DBreakpoint.cpp383 void Breakpoint::SetQueueName(const char *queue_name) { in SetQueueName()
385 ::strcmp(m_options.GetThreadSpec()->GetQueueName(), queue_name) == 0) in SetQueueName()
388 m_options.GetThreadSpec()->SetQueueName(queue_name); in SetQueueName()
382 SetQueueName(const char * queue_name) SetQueueName() argument
/llvm-project/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.cpp1657 bool queue_vars_valid, // Set to true if queue_name, queue_kind and in SetThreadStopInfo()
1660 std::string &queue_name, QueueKind queue_kind, uint64_t queue_serial) { in SetThreadStopInfo()
1708 gdb_thread->SetQueueInfo(std::move(queue_name), queue_kind, queue_serial, in SetThreadStopInfo()
2035 std::string queue_name; in SetThreadStopInfo()
2046 &queue_name, &queue_kind, &queue_serial_number]( in SetThreadStopInfo()
2071 queue_name = std::string(object->GetStringValue()); in SetThreadStopInfo()
2155 queue_name, queue_kind, queue_serial_number); in SetThreadStopInfo()
2194 std::string queue_name; in SetThreadStopInfo()
2258 name_extractor.GetHexByteString(queue_name); in SetThreadStopInfo()
2391 associated_with_dispatch_queue, dispatch_queue_t, queue_name, in RefreshStateAfterStop()
1658 SetThreadStopInfo(lldb::tid_t tid,ExpeditedRegisterMap & expedited_register_map,uint8_t signo,const std::string & thread_name,const std::string & reason,const std::string & description,uint32_t exc_type,const std::vector<addr_t> & exc_data,addr_t thread_dispatch_qaddr,bool queue_vars_valid,LazyBool associated_with_dispatch_queue,addr_t dispatch_queue_t,std::string & queue_name,QueueKind queue_kind,uint64_t queue_serial) SetThreadStopInfo() argument
1994 std::string queue_name; SetThreadStopInfo() local
2153 std::string queue_name; SetThreadStopInfo() local
[all...]
H A DProcessGDBRemote.h375 lldb::addr_t dispatch_queue_t, std::string &queue_name,
/llvm-project/lldb/include/lldb/API/
H A DSBBreakpointName.h76 void SetQueueName(const char *queue_name);
H A DSBBreakpointLocation.h92 void SetQueueName(const char *queue_name);
H A DSBBreakpoint.h96 void SetQueueName(const char *queue_name);
/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointLocation.h159 void SetQueueName(const char *queue_name);
H A DBreakpoint.h371 void SetQueueName(const char *queue_name);
/llvm-project/lldb/tools/lldb-dap/
H A DJSONUtils.cpp839 const char *queue_name = thread.GetQueueName();
840 if (queue_name != nullptr) {
841 name = llvm::formatv("Enqueued from {0} (Thread {1})", queue_name,
877 const char *queue_name = thread.GetQueueName();
881 } else if (queue_name) { in CreateThreadStopped()
892 queue_name, queue_kind_label) in CreateThreadStopped()
794 const char *queue_name = thread.GetQueueName(); CreateThread() local
/llvm-project/lldb/tools/debugserver/source/
H A DRNBRemote.h356 std::string &queue_name, uint64_t &queue_width,
H A DRNBRemote.cpp2621 std::string &queue_name, uint64_t &queue_width, in GetThreadQueueInfo()
2623 queue_name.clear(); in GetThreadQueueInfo()
2643 queue_name = DNBProcessMemoryReadCString(pid, label_addr); in GetThreadQueueInfo()
2647 queue_name = DNBProcessMemoryReadCStringFixed( in GetThreadQueueInfo()
5556 std::string queue_name; in GetJSONThreadsInfo()
5562 queue_name, queue_width, queue_serialnum); in GetJSONThreadsInfo()
5563 if (dispatch_queue_t == 0 && queue_name.empty() && in GetJSONThreadsInfo()
5575 if (!queue_name.empty()) in GetJSONThreadsInfo()
5576 thread_dict_sp->AddStringItem("qname", queue_name); in GetJSONThreadsInfo()
2622 GetThreadQueueInfo(nub_process_t pid,nub_addr_t dispatch_qaddr,nub_addr_t & dispatch_queue_t,std::string & queue_name,uint64_t & queue_width,uint64_t & queue_serialnum) const GetThreadQueueInfo() argument
5543 std::string queue_name; GetJSONThreadsInfo() local

12