Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A 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()
189 uint32_t thread_idx; in DoExecute() local
190 if (!llvm::to_integer(command.GetArgumentAtIndex(i), thread_idx)) { in DoExecute()
196 ThreadSP thread = process.GetThreadList().FindThreadByIndexID(thread_idx); in DoExecute()
H A DCommandObjectThread.cpp696 uint32_t thread_idx; in DoExecute() local
697 if (entry.ref().getAsInteger(0, thread_idx)) { in DoExecute()
703 process->GetThreadList().FindThreadByIndexID(thread_idx).get(); in DoExecute()
709 thread_idx); in DoExecute()
2160 uint32_t thread_idx; in GetSingleThreadFromArgs() local
2162 if (!llvm::to_integer(arg, thread_idx)) { in GetSingleThreadFromArgs()
2167 exe_ctx.GetProcessRef().GetThreadList().FindThreadByIndexID(thread_idx); in GetSingleThreadFromArgs()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Minidump/
H A DMinidumpFileBuilder.cpp510 for (uint32_t thread_idx = 0; thread_idx < num_threads; ++thread_idx) { in AddThreadList() local
511 ThreadSP thread_sp(thread_list.GetThreadAtIndex(thread_idx)); in AddThreadList()
591 for (uint32_t thread_idx = 0; thread_idx < num_threads; ++thread_idx) { in AddExceptions() local
592 ThreadSP thread_sp(thread_list.GetThreadAtIndex(thread_idx)); in AddExceptions()
/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBBreakpointLocation.cpp343 uint32_t thread_idx = UINT32_MAX; in GetThreadIndex() local
350 return thread_idx; in GetThreadIndex()
H A DSBBreakpoint.cpp384 uint32_t thread_idx = UINT32_MAX; in GetThreadIndex() local
392 thread_idx = thread_spec->GetIndex(); in GetThreadIndex()
395 return thread_idx; in GetThreadIndex()