Home | History | Annotate | Download | only in POSIX

Lines Matching defs:thread

278         POSIXThread *thread = static_cast<POSIXThread*>(
280 did_resume = thread->Resume() || did_resume;
338 POSIXThread *thread = static_cast<POSIXThread*>(
340 error = m_monitor->Detach(thread->GetID());
390 POSIXThread *thread = static_cast<POSIXThread*>(
399 assert(thread);
400 thread->SetState(eStateStopped);
423 assert(thread);
424 thread->SetState(eStateExited);
435 assert(thread);
436 thread->SetState(eStateStopped);
453 assert(thread);
454 thread->SetState(eStateStopped);
504 // Resolve the thread this message corresponds to and pass it along.
508 POSIXThread *thread = static_cast<POSIXThread*>(
514 log->Printf ("ProcessPOSIX::%s() adding thread, tid = %" PRIi64, __FUNCTION__, message.GetChildTID());
526 if (thread)
527 thread->Notify(message);
533 log->Printf ("ProcessPOSIX::%s() removing thread, tid = %" PRIi64, __FUNCTION__, tid);
685 // Try to find a vacant watchpoint slot in the inferiors' main thread
688 POSIXThread *thread = static_cast<POSIXThread*>(
691 if (thread)
692 wp_hw_index = thread->FindVacantWatchpointIndex();
705 thread = static_cast<POSIXThread*>(
707 if (thread)
708 wp_enabled &= thread->EnableHardwareWatchpoint(wp);
761 POSIXThread *thread = static_cast<POSIXThread*>(
763 if (thread)
764 wp_disabled &= thread->DisableHardwareWatchpoint(wp);
788 POSIXThread *thread = static_cast<POSIXThread*>(
790 if (thread)
791 num = thread->NumSupportedHardwareWatchpoints();
822 // Update the process thread list with this new thread.
907 POSIXThread *thread = static_cast<POSIXThread*>(
909 StateType thread_state = thread->GetState();