Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/lldb/source/Target/
H A 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()
H A DQueueList.cpp58 lldb::QueueSP QueueList::FindQueueByIndexID(uint32_t index_id) { in FindQueueByIndexID() argument
61 if (queue_sp->GetIndexID() == index_id) { in FindQueueByIndexID()
H A 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/gnu/llvm/lldb/include/lldb/Target/
H A DThreadList.h76 bool SetSelectedThreadByIndexID(uint32_t index_id, bool notify = false);
99 lldb::ThreadSP FindThreadByIndexID(uint32_t index_id, bool can_update = true);
H A DQueueList.h92 lldb::QueueSP FindQueueByIndexID(uint32_t index_id);
/openbsd/gnu/llvm/lldb/source/API/
H A DSBQueue.cpp269 uint32_t index_id = m_opaque_sp->GetIndexID(); in GetIndexID() local
270 return index_id; in GetIndexID()
H A 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/gnu/llvm/lldb/include/lldb/API/
H A DSBProcess.h95 lldb::SBThread GetThreadByIndexID(uint32_t index_id);
109 bool SetSelectedThreadByIndexID(uint32_t index_id);
/openbsd/gnu/llvm/lldb/bindings/interface/
H A DSBProcess.i150 GetThreadByIndexID (uint32_t index_id);
169 SetSelectedThreadByIndexID (uint32_t index_id);
/openbsd/gnu/llvm/lldb/source/Commands/
H A 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/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp4738 int32_t index_id = AssignIndexIDToThread(thread_id); in HarmonizeThreadIdsForProfileData() local
4739 output_stream << index_id << ";"; in HarmonizeThreadIdsForProfileData()