Searched refs:thread_idx (Results 1 - 9 of 9) sorted by relevance

/external/lldb/source/API/
H A DSBBreakpointLocation.cpp197 uint32_t thread_idx = UINT32_MAX; local
203 return thread_idx;
H A DSBBreakpoint.cpp400 uint32_t thread_idx = UINT32_MAX; local
406 thread_idx = thread_spec->GetIndex();
410 log->Printf ("SBBreakpoint(%p)::GetThreadIndex () => %u", m_opaque_sp.get(), thread_idx);
412 return thread_idx;
/external/lldb/examples/python/
H A Dcrashlog.py300 thread_idx = int(thread_state_match.group(1))
302 thread = self.threads[thread_idx]
308 thread_idx = int(thread_match.group(1))
309 thread = CrashLog.Thread(thread_idx)
558 for thread_idx in range(lldb.process.num_threads):
559 thread = lldb.process.thread[thread_idx]
560 out_file.write('\nThread %u:\n' % (thread_idx))
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.cpp157 MachProcess::GetThreadAtIndex (nub_size_t thread_idx) const
159 return m_thread_list.ThreadIDAtIndex(thread_idx);
474 uint32_t thread_idx = m_thread_list.GetThreadIndexForThreadStoppedWithSignal (SIGSTOP); local
476 *thread_idx_ptr = thread_idx;
477 if (thread_idx != UINT32_MAX)
508 uint32_t thread_idx = m_thread_list.GetThreadIndexForThreadStoppedWithSignal (SIGSTOP); local
510 *thread_idx_ptr = thread_idx;
519 uint32_t thread_idx = UINT32_MAX; local
520 nub_state_t state = DoSIGSTOP(true, true, &thread_idx);
526 thread_action.tid = m_thread_list.ThreadIDAtIndex (thread_idx);
[all...]
H A DMachProcess.h174 nub_thread_t GetThreadAtIndex (nub_size_t thread_idx) const;
/external/lldb/source/Commands/
H A DCommandObjectThread.cpp217 uint32_t thread_idx = Args::StringToUInt32(command.GetArgumentAtIndex(i), 0, 0, &success); local
225 thread_sps.push_back(process->GetThreadList().FindThreadByIndexID(thread_idx));
673 uint32_t thread_idx = Args::StringToUInt32 (command.GetArgumentAtIndex(i), LLDB_INVALID_INDEX32, base, &success); local
676 Thread *thread = process->GetThreadList().FindThreadByIndexID(thread_idx).get();
684 result.AppendErrorWithFormat("invalid thread index %u.\n", thread_idx);
/external/lldb/tools/debugserver/source/
H A DDNB.h81 nub_thread_t DNBProcessGetThreadAtIndex (nub_process_t pid, nub_size_t thread_idx) DNB_EXPORT;
H A DDNB.cpp1641 DNBProcessGetThreadAtIndex (nub_process_t pid, size_t thread_idx) argument
1645 return procSP->GetThreadAtIndex (thread_idx);
/external/opencv/cv/src/
H A Dcvtemplmatch.cpp198 int thread_idx = cvGetThreadNum(); local
204 CvMat* _dft_img = dft_img[thread_idx];
205 void* _buf = buf[thread_idx];

Completed in 358 milliseconds