Home
last modified time | relevance | path

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

/openbsd-src/gnu/usr.bin/binutils/gdb/gdbserver/
H A Dserver.c91 static struct inferior_list_entry *thread_ptr; in handle_query() local
104 thread_ptr = all_threads.head; in handle_query()
105 sprintf (own_buf, "m%x", thread_ptr->id); in handle_query()
106 thread_ptr = thread_ptr->next; in handle_query()
112 if (thread_ptr != NULL) in handle_query()
114 sprintf (own_buf, "m%x", thread_ptr->id); in handle_query()
115 thread_ptr = thread_ptr->next; in handle_query()
/openbsd-src/gnu/llvm/lldb/include/lldb/Target/
H A DThreadList.h101 lldb::ThreadSP GetThreadSPForThreadPtr(Thread *thread_ptr);
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DThreadList.cpp178 ThreadSP ThreadList::GetThreadSPForThreadPtr(Thread *thread_ptr) { in GetThreadSPForThreadPtr() argument
180 if (thread_ptr) { in GetThreadSPForThreadPtr()
186 if (m_threads[idx].get() == thread_ptr) { in GetThreadSPForThreadPtr()
/openbsd-src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp3578 Thread *thread_ptr) { in GetKernelCoordinate() argument
3585 if (!thread_ptr) { in GetKernelCoordinate()
3593 for (uint32_t i = 0; i < thread_ptr->GetStackFrameCount(); ++i) { in GetKernelCoordinate()
3594 if (!thread_ptr->SetSelectedFrameByIndex(i)) in GetKernelCoordinate()
3597 StackFrameSP frame_sp = thread_ptr->GetSelectedFrame(); in GetKernelCoordinate()
3662 Thread *thread_ptr = context.GetThreadPtr(); in KernelBreakpointHit() local
3663 assert(thread_ptr && "Null thread pointer"); in KernelBreakpointHit()
3667 if (!GetKernelCoordinate(current_coord, thread_ptr)) { in KernelBreakpointHit()
H A DRenderScriptRuntime.h417 Thread *thread_ptr);