Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/lldb/source/Commands/
DCommandObjectThreadUtil.cpp70 uint32_t thread_idx; in DoExecute() local
71 if (!llvm::to_integer(command.GetArgumentAtIndex(i), thread_idx)) { in DoExecute()
78 process->GetThreadList().FindThreadByIndexID(thread_idx); in DoExecute()
190 uint32_t thread_idx; in DoExecute() local
191 if (!llvm::to_integer(command.GetArgumentAtIndex(i), thread_idx)) { in DoExecute()
197 ThreadSP thread = process.GetThreadList().FindThreadByIndexID(thread_idx); in DoExecute()
DCommandObjectThread.cpp693 uint32_t thread_idx; in DoExecute() local
694 if (entry.ref().getAsInteger(0, thread_idx)) { in DoExecute()
700 process->GetThreadList().FindThreadByIndexID(thread_idx).get(); in DoExecute()
706 thread_idx); in DoExecute()
2101 uint32_t thread_idx; in GetSingleThreadFromArgs() local
2103 if (!llvm::to_integer(arg, thread_idx)) { in GetSingleThreadFromArgs()
2108 exe_ctx.GetProcessRef().GetThreadList().FindThreadByIndexID(thread_idx); in GetSingleThreadFromArgs()
/openbsd/src/gnu/llvm/lldb/tools/lldb-vscode/
Dlldb-vscode.cpp234 for (uint32_t thread_idx = 0; thread_idx < num_threads; ++thread_idx) { in SendThreadStoppedEvent() local
235 lldb::SBThread thread = process.GetThreadAtIndex(thread_idx); in SendThreadStoppedEvent()
263 for (uint32_t thread_idx = 0; thread_idx < num_threads; ++thread_idx) { in SendThreadStoppedEvent() local
264 lldb::SBThread thread = process.GetThreadAtIndex(thread_idx); in SendThreadStoppedEvent()
2663 for (uint32_t thread_idx = 0; thread_idx < num_threads; ++thread_idx) { in request_threads() local
2664 lldb::SBThread thread = process.GetThreadAtIndex(thread_idx); in request_threads()
/openbsd/src/gnu/llvm/lldb/examples/python/
Dcrashlog.py790 thread_idx = int(thread_state_match.group(1))
792 self.thread = self.crashlog.threads[thread_idx]
802 thread_idx = int(thread_match.group(1))
803 self.thread = self.crashlog.Thread(thread_idx, False)
923 for thread_idx in range(process.num_threads):
924 thread = process.thread[thread_idx]
925 out_file.write('\nThread %u:\n' % (thread_idx))
/openbsd/src/gnu/llvm/lldb/source/API/
DSBBreakpointLocation.cpp343 uint32_t thread_idx = UINT32_MAX; in GetThreadIndex() local
350 return thread_idx; in GetThreadIndex()
DSBBreakpoint.cpp385 uint32_t thread_idx = UINT32_MAX; in GetThreadIndex() local
393 thread_idx = thread_spec->GetIndex(); in GetThreadIndex()
396 return thread_idx; in GetThreadIndex()
/openbsd/src/gnu/llvm/lldb/tools/debugserver/source/
DDNB.h130 nub_size_t thread_idx) DNB_EXPORT;
DDNB.cpp1411 nub_thread_t DNBProcessGetThreadAtIndex(nub_process_t pid, size_t thread_idx) { in DNBProcessGetThreadAtIndex() argument
1414 return procSP->GetThreadAtIndex(thread_idx); in DNBProcessGetThreadAtIndex()
/openbsd/src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/
DMachProcess.h283 nub_thread_t GetThreadAtIndex(nub_size_t thread_idx) const;
DMachProcess.mm585 nub_thread_t MachProcess::GetThreadAtIndex(nub_size_t thread_idx) const {
586 return m_thread_list.ThreadIDAtIndex(thread_idx);
1581 uint32_t thread_idx =
1584 *thread_idx_ptr = thread_idx;
1585 if (thread_idx != UINT32_MAX)
1619 uint32_t thread_idx =
1622 *thread_idx_ptr = thread_idx;
1629 uint32_t thread_idx = UINT32_MAX;
1630 nub_state_t state = DoSIGSTOP(true, true, &thread_idx);
1638 thread_action.tid = m_thread_list.ThreadIDAtIndex(thread_idx);
/openbsd/src/gnu/llvm/lldb/source/Plugins/ObjectFile/Mach-O/
DObjectFileMachO.cpp6647 for (uint32_t thread_idx = 0; thread_idx < num_threads; ++thread_idx) {
6648 ThreadSP thread_sp(thread_list.GetThreadAtIndex(thread_idx));
6654 thread_sp.get(), LC_THREAD_datas[thread_idx]);
6659 thread_sp.get(), LC_THREAD_datas[thread_idx]);
6664 thread_sp.get(), LC_THREAD_datas[thread_idx]);
6669 thread_sp.get(), LC_THREAD_datas[thread_idx]);