Lines Matching refs:GetID
227 if (t->GetID() == static_cast<lldb::tid_t>(info.psi_lwpid)) { in MonitorSIGTRAP()
375 static_cast<lldb::tid_t>(info.psi_lwpid) == thread.GetID()) in MonitorSignal()
422 resume_actions.GetActionForThread(thread->GetID(), true); in ComputeSignalInfo()
432 signaled_lwp = thread->GetID(); in ComputeSignalInfo()
462 LLDB_LOG(log, "pid {0}", GetID()); in Resume()
476 resume_actions.GetActionForThread(thread.GetID(), true); in Resume()
479 ResumeAction suspend_action{thread.GetID(), eStateSuspended, in Resume()
483 LLDB_LOG(log, "no action specified for pid {0} tid {1}", GetID(), in Resume()
484 thread.GetID()); in Resume()
491 action->state, action->signal, GetID(), thread.GetID()); in Resume()
511 __FUNCTION__, StateAsCString(action->state), GetID(), in Resume()
512 thread.GetID()); in Resume()
521 ret = PtraceWrapper(PT_SET_SIGINFO, GetID(), &siginfo.get(), in Resume()
529 PtraceWrapper(PT_CONTINUE, GetID(), reinterpret_cast<void *>(1), signal); in Resume()
535 Status NativeProcessNetBSD::Halt() { return PtraceWrapper(PT_STOP, GetID()); } in Halt()
544 if (GetID() == LLDB_INVALID_PROCESS_ID) in Detach()
547 return PtraceWrapper(PT_DETACH, GetID(), reinterpret_cast<void *>(1)); in Detach()
553 if (kill(GetID(), signo)) in Signal()
560 return PtraceWrapper(PT_STOP, GetID()); in Interrupt()
565 LLDB_LOG(log, "pid {0}", GetID()); in Kill()
576 LLDB_LOG(log, "ignored for PID {0} due to current state: {1}", GetID(), in Kill()
591 if (kill(GetID(), SIGKILL) != 0) { in Kill()
667 vm = kinfo_getvmmap(GetID(), &count); in PopulateMemoryRegionCache()
715 m_mem_region_cache.size(), GetID()); in PopulateMemoryRegionCache()
776 ::pid_t wait_pid = llvm::sys::RetryAfterSignal(-1, waitpid, GetID(), &status, in SigchldHandler()
784 LLDB_LOG(log, "waitpid ({0}, &status, _) failed: {1}", GetID(), error); in SigchldHandler()
791 wait_pid == static_cast<::pid_t>(GetID())); in SigchldHandler()
795 GetID(), wait_pid, status, exited); in SigchldHandler()
808 if (thread->GetID() == thread_id) { in HasThreadNoLock()
820 LLDB_LOG(log, "pid {0} adding thread with tid {1}", GetID(), thread_id); in AddThread()
836 LLDB_LOG(log, "pid {0} removing thread with tid {1}", GetID(), thread_id); in RemoveThread()
843 if ((*it)->GetID() == thread_id) { in RemoveThread()
874 SetCurrentThreadID(m_threads.front()->GetID()); in Attach()
895 Status error = NativeProcessNetBSD::PtraceWrapper(PT_IO, GetID(), &io); in ReadMemory()
924 Status error = NativeProcessNetBSD::PtraceWrapper(PT_IO, GetID(), &io); in WriteMemory()
955 Status error = NativeProcessNetBSD::PtraceWrapper(PT_IO, GetID(), &io); in GetAuxvData()
970 PtraceWrapper(PT_GET_EVENT_MASK, GetID(), &events, sizeof(events)); in SetupTrace()
976 status = PtraceWrapper(PT_SET_EVENT_MASK, GetID(), &events, sizeof(events)); in SetupTrace()
996 Status error = PtraceWrapper(op, GetID(), &info, sizeof(info)); in ReinitializeThreads()
1004 error = PtraceWrapper(op, GetID(), &info, sizeof(info)); in ReinitializeThreads()
1068 PtraceWrapper(PT_CONTINUE, GetID(), reinterpret_cast<void *>(1), 0); in MonitorClone()
1071 "unable to resume parent process {1}: {0}", GetID()); in MonitorClone()