Lines Matching refs:thread

159                 auto thread = DownCastDispatcher<ThreadDispatcher>(&target_);  in OnPortZeroHandles()  local
160 DEBUG_ASSERT(thread != nullptr); in OnPortZeroHandles()
162 thread->ResetExceptionPort(); in OnPortZeroHandles()
246 zx_status_t ExceptionPort::SendPacket(ThreadDispatcher* thread, uint32_t type) { in SendPacket() argument
249 zx_koid_t pid = thread->process()->get_koid(); in SendPacket()
250 zx_koid_t tid = thread->get_koid(); in SendPacket()
266 void ExceptionPort::OnThreadStartForDebugger(ThreadDispatcher* thread) { in OnThreadStartForDebugger() argument
271 zx_koid_t pid = thread->process()->get_koid(); in OnThreadStartForDebugger()
272 zx_koid_t tid = thread->get_koid(); in OnThreadStartForDebugger()
282 …auto status = thread->ExceptionHandlerExchange(fbl::RefPtr<ExceptionPort>(this), &report, &context… in OnThreadStartForDebugger()
291 void ExceptionPort::OnProcessStartForDebugger(ThreadDispatcher* thread) { in OnProcessStartForDebugger() argument
296 zx_koid_t pid = thread->process()->get_koid(); in OnProcessStartForDebugger()
297 zx_koid_t tid = thread->get_koid(); in OnProcessStartForDebugger()
307 …auto status = thread->ExceptionHandlerExchange(fbl::RefPtr<ExceptionPort>(this), &report, &context… in OnProcessStartForDebugger()
319 void ExceptionPort::OnThreadExitForDebugger(ThreadDispatcher* thread) { in OnThreadExitForDebugger() argument
324 zx_koid_t pid = thread->process()->get_koid(); in OnThreadExitForDebugger()
325 zx_koid_t tid = thread->get_koid(); in OnThreadExitForDebugger()
338 …auto status = thread->ExceptionHandlerExchange(fbl::RefPtr<ExceptionPort>(this), &report, &context… in OnThreadExitForDebugger()