Home
last modified time | relevance | path

Searched refs:index_id (Results 1 – 11 of 11) sorted by relevance

/openbsd/src/gnu/llvm/lldb/source/Target/
DThreadPlanStack.cpp441 uint32_t index_id = 0; in DumpPlans() local
449 index_id = thread_sp->GetIndexID(); in DumpPlans()
454 strm.Printf("thread #%u: tid = 0x%4.4" PRIx64 "\n", index_id, tid); in DumpPlans()
464 strm.Printf("thread #%u: tid = 0x%4.4" PRIx64 ":\n", index_id, tid); in DumpPlans()
476 uint32_t index_id = 0; in DumpPlansForTID() local
487 index_id = thread_sp->GetIndexID(); in DumpPlansForTID()
497 strm.Printf("thread #%u: tid = 0x%4.4" PRIx64 "\n", index_id, tid); in DumpPlansForTID()
507 strm.Printf("thread #%u: tid = 0x%4.4" PRIx64 ":\n", index_id, tid); in DumpPlansForTID()
DQueueList.cpp58 lldb::QueueSP QueueList::FindQueueByIndexID(uint32_t index_id) { in FindQueueByIndexID() argument
61 if (queue_sp->GetIndexID() == index_id) { in FindQueueByIndexID()
DThreadList.cpp209 ThreadSP ThreadList::FindThreadByIndexID(uint32_t index_id, bool can_update) { in FindThreadByIndexID() argument
218 if (m_threads[idx]->GetIndexID() == index_id) { in FindThreadByIndexID()
711 bool ThreadList::SetSelectedThreadByIndexID(uint32_t index_id, bool notify) { in SetSelectedThreadByIndexID() argument
713 ThreadSP selected_thread_sp(FindThreadByIndexID(index_id)); in SetSelectedThreadByIndexID()
/openbsd/src/gnu/llvm/lldb/include/lldb/Target/
DThreadList.h76 bool SetSelectedThreadByIndexID(uint32_t index_id, bool notify = false);
99 lldb::ThreadSP FindThreadByIndexID(uint32_t index_id, bool can_update = true);
DQueueList.h92 lldb::QueueSP FindQueueByIndexID(uint32_t index_id);
/openbsd/src/gnu/llvm/lldb/source/API/
DSBQueue.cpp269 uint32_t index_id = m_opaque_sp->GetIndexID(); in GetIndexID() local
270 return index_id; in GetIndexID()
DSBProcess.cpp369 bool SBProcess::SetSelectedThreadByIndexID(uint32_t index_id) { in SetSelectedThreadByIndexID() argument
370 LLDB_INSTRUMENT_VA(this, index_id); in SetSelectedThreadByIndexID()
377 ret_val = process_sp->GetThreadList().SetSelectedThreadByIndexID(index_id); in SetSelectedThreadByIndexID()
694 SBThread SBProcess::GetThreadByIndexID(uint32_t index_id) { in GetThreadByIndexID() argument
695 LLDB_INSTRUMENT_VA(this, index_id); in GetThreadByIndexID()
706 process_sp->GetThreadList().FindThreadByIndexID(index_id, can_update); in GetThreadByIndexID()
/openbsd/src/gnu/llvm/lldb/include/lldb/API/
DSBProcess.h95 lldb::SBThread GetThreadByIndexID(uint32_t index_id);
109 bool SetSelectedThreadByIndexID(uint32_t index_id);
/openbsd/src/gnu/llvm/lldb/bindings/interface/
DSBProcess.i150 GetThreadByIndexID (uint32_t index_id);
169 SetSelectedThreadByIndexID (uint32_t index_id);
/openbsd/src/gnu/llvm/lldb/source/Commands/
DCommandObjectThread.cpp1181 uint32_t index_id; in DoExecute() local
1182 if (!llvm::to_integer(command.GetArgumentAtIndex(0), index_id)) { in DoExecute()
1189 process->GetThreadList().FindThreadByIndexID(index_id).get(); in DoExecute()
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.cpp4738 int32_t index_id = AssignIndexIDToThread(thread_id); in HarmonizeThreadIdsForProfileData() local
4739 output_stream << index_id << ";"; in HarmonizeThreadIdsForProfileData()