Searched refs:thread_idx (Results 1 – 10 of 10) sorted by relevance
/external/lldb/examples/python/ |
D | crashlog.py | 300 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/source/API/ |
D | SBBreakpoint.cpp | 400 uint32_t thread_idx = UINT32_MAX; in GetThreadIndex() local 406 thread_idx = thread_spec->GetIndex(); in GetThreadIndex() 410 log->Printf ("SBBreakpoint(%p)::GetThreadIndex () => %u", m_opaque_sp.get(), thread_idx); in GetThreadIndex() 412 return thread_idx; in GetThreadIndex()
|
D | SBBreakpointLocation.cpp | 197 uint32_t thread_idx = UINT32_MAX; in GetThreadIndex() local 203 return thread_idx; in GetThreadIndex()
|
/external/lldb/tools/debugserver/source/MacOSX/ |
D | MachProcess.cpp | 157 MachProcess::GetThreadAtIndex (nub_size_t thread_idx) const in GetThreadAtIndex() 159 return m_thread_list.ThreadIDAtIndex(thread_idx); in GetThreadAtIndex() 474 uint32_t thread_idx = m_thread_list.GetThreadIndexForThreadStoppedWithSignal (SIGSTOP); in DoSIGSTOP() local 476 *thread_idx_ptr = thread_idx; in DoSIGSTOP() 477 if (thread_idx != UINT32_MAX) in DoSIGSTOP() 508 uint32_t thread_idx = m_thread_list.GetThreadIndexForThreadStoppedWithSignal (SIGSTOP); in DoSIGSTOP() local 510 *thread_idx_ptr = thread_idx; in DoSIGSTOP() 519 uint32_t thread_idx = UINT32_MAX; in Detach() local 520 nub_state_t state = DoSIGSTOP(true, true, &thread_idx); in Detach() 526 thread_action.tid = m_thread_list.ThreadIDAtIndex (thread_idx); in Detach()
|
D | MachProcess.h | 174 nub_thread_t GetThreadAtIndex (nub_size_t thread_idx) const;
|
/external/lldb/source/Commands/ |
D | CommandObjectThread.cpp | 217 … uint32_t thread_idx = Args::StringToUInt32(command.GetArgumentAtIndex(i), 0, 0, &success); in DoExecute() local 225 thread_sps.push_back(process->GetThreadList().FindThreadByIndexID(thread_idx)); in DoExecute() 673 …uint32_t thread_idx = Args::StringToUInt32 (command.GetArgumentAtIndex(i), LLDB_INVALID_INDEX32, b… in DoExecute() local 676 … Thread *thread = process->GetThreadList().FindThreadByIndexID(thread_idx).get(); in DoExecute() 684 result.AppendErrorWithFormat("invalid thread index %u.\n", thread_idx); in DoExecute()
|
/external/opencv/cv/src/ |
D | cvtemplmatch.cpp | 198 int thread_idx = cvGetThreadNum(); in icvCrossCorr() local 204 CvMat* _dft_img = dft_img[thread_idx]; in icvCrossCorr() 205 void* _buf = buf[thread_idx]; in icvCrossCorr()
|
/external/lldb/tools/debugserver/source/ |
D | DNB.h | 81 nub_thread_t DNBProcessGetThreadAtIndex (nub_process_t pid, nub_size_t thread_idx) …
|
D | DNB.cpp | 1641 DNBProcessGetThreadAtIndex (nub_process_t pid, size_t thread_idx) in DNBProcessGetThreadAtIndex() argument 1645 return procSP->GetThreadAtIndex (thread_idx); in DNBProcessGetThreadAtIndex()
|
/external/google-breakpad/src/client/mac/handler/ |
D | minidump_generator.cc | 993 int thread_idx = 0; in WriteThreadListStream() local 1002 list.CopyIndexAfterObject(thread_idx++, &thread, sizeof(MDRawThread)); in WriteThreadListStream()
|