Home
last modified time | relevance | path

Searched refs:thread_ptr (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadList.h101 lldb::ThreadSP GetThreadSPForThreadPtr(Thread *thread_ptr);
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DThreadList.cpp177 ThreadSP ThreadList::GetThreadSPForThreadPtr(Thread *thread_ptr) { in GetThreadSPForThreadPtr() argument
179 if (thread_ptr) { in GetThreadSPForThreadPtr()
185 if (m_threads[idx].get() == thread_ptr) { in GetThreadSPForThreadPtr()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp3591 Thread *thread_ptr) { in GetKernelCoordinate() argument
3598 if (!thread_ptr) { in GetKernelCoordinate()
3606 for (uint32_t i = 0; i < thread_ptr->GetStackFrameCount(); ++i) { in GetKernelCoordinate()
3607 if (!thread_ptr->SetSelectedFrameByIndex(i)) in GetKernelCoordinate()
3610 StackFrameSP frame_sp = thread_ptr->GetSelectedFrame(); in GetKernelCoordinate()
3676 Thread *thread_ptr = context.GetThreadPtr(); in KernelBreakpointHit() local
3677 assert(thread_ptr && "Null thread pointer"); in KernelBreakpointHit()
3681 if (!GetKernelCoordinate(current_coord, thread_ptr)) { in KernelBreakpointHit()
H A DRenderScriptRuntime.h418 Thread *thread_ptr);