Searched refs:index_id (Results 1 – 11 of 11) sorted by relevance
/openbsd/gnu/llvm/lldb/source/Target/ |
H A D | ThreadPlanStack.cpp | 441 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 D | QueueList.cpp | 58 lldb::QueueSP QueueList::FindQueueByIndexID(uint32_t index_id) { in FindQueueByIndexID() argument 61 if (queue_sp->GetIndexID() == index_id) { in FindQueueByIndexID()
|
H A D | ThreadList.cpp | 209 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 D | ThreadList.h | 76 bool SetSelectedThreadByIndexID(uint32_t index_id, bool notify = false); 99 lldb::ThreadSP FindThreadByIndexID(uint32_t index_id, bool can_update = true);
|
H A D | QueueList.h | 92 lldb::QueueSP FindQueueByIndexID(uint32_t index_id);
|
/openbsd/gnu/llvm/lldb/source/API/ |
H A D | SBQueue.cpp | 269 uint32_t index_id = m_opaque_sp->GetIndexID(); in GetIndexID() local 270 return index_id; in GetIndexID()
|
H A D | SBProcess.cpp | 369 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 D | SBProcess.h | 95 lldb::SBThread GetThreadByIndexID(uint32_t index_id); 109 bool SetSelectedThreadByIndexID(uint32_t index_id);
|
/openbsd/gnu/llvm/lldb/bindings/interface/ |
H A D | SBProcess.i | 150 GetThreadByIndexID (uint32_t index_id); 169 SetSelectedThreadByIndexID (uint32_t index_id);
|
/openbsd/gnu/llvm/lldb/source/Commands/ |
H A D | CommandObjectThread.cpp | 1181 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 D | ProcessGDBRemote.cpp | 4738 int32_t index_id = AssignIndexIDToThread(thread_id); in HarmonizeThreadIdsForProfileData() local 4739 output_stream << index_id << ";"; in HarmonizeThreadIdsForProfileData()
|