Lines Matching refs:GetID

259       if (t->GetID() == static_cast<lldb::tid_t>(info.pl_lwpid))  in MonitorSIGTRAP()
300 m_threads_stepping_with_breakpoint.find(thread->GetID()); in MonitorSIGTRAP()
369 static_cast<lldb::tid_t>(info.pl_lwpid) == thread.GetID()) in MonitorSignal()
424 LLDB_LOG(log, "pid {0}", GetID()); in Resume()
435 resume_actions.GetActionForThread(thread.GetID(), true); in Resume()
438 ResumeAction suspend_action{thread.GetID(), eStateSuspended, in Resume()
442 LLDB_LOG(log, "no action specified for pid {0} tid {1}", GetID(), in Resume()
443 thread.GetID()); in Resume()
450 action->state, action->signal, GetID(), thread.GetID()); in Resume()
471 __FUNCTION__, StateAsCString(action->state), GetID(), thread.GetID()); in Resume()
481 PtraceWrapper(PT_CONTINUE, GetID(), reinterpret_cast<void *>(1), signal); in Resume()
490 if (kill(GetID(), SIGSTOP) != 0) in Halt()
502 if (GetID() == LLDB_INVALID_PROCESS_ID) in Detach()
505 return PtraceWrapper(PT_DETACH, GetID()); in Detach()
511 if (kill(GetID(), signo)) in Signal()
521 LLDB_LOG(log, "pid {0}", GetID()); in Kill()
532 LLDB_LOG(log, "ignored for PID {0} due to current state: {1}", GetID(), in Kill()
679 m_mem_region_cache.size(), GetID()); in PopulateMemoryRegionCache()
737 llvm::sys::RetryAfterSignal(-1, waitpid, GetID(), &status, WNOHANG); in SigchldHandler()
744 LLDB_LOG(log, "waitpid ({0}, &status, _) failed: {1}", GetID(), error); in SigchldHandler()
751 wait_pid == static_cast<::pid_t>(GetID())); in SigchldHandler()
755 GetID(), wait_pid, status, exited); in SigchldHandler()
768 if (thread->GetID() == thread_id) { in HasThreadNoLock()
780 LLDB_LOG(log, "pid {0} adding thread with tid {1}", GetID(), thread_id); in AddThread()
796 LLDB_LOG(log, "pid {0} removing thread with tid {1}", GetID(), thread_id); in RemoveThread()
803 if ((*it)->GetID() == thread_id) { in RemoveThread()
834 SetCurrentThreadID(m_threads.front()->GetID()); in Attach()
855 Status error = NativeProcessFreeBSD::PtraceWrapper(PT_IO, GetID(), &io); in ReadMemory()
884 Status error = NativeProcessFreeBSD::PtraceWrapper(PT_IO, GetID(), &io); in WriteMemory()
897 int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_AUXV, static_cast<int>(GetID())}; in GetAuxvData()
912 PtraceWrapper(PT_GET_EVENT_MASK, GetID(), &events, sizeof(events)); in SetupTrace()
916 status = PtraceWrapper(PT_SET_EVENT_MASK, GetID(), &events, sizeof(events)); in SetupTrace()
928 Status error = PtraceWrapper(PT_GETNUMLWPS, GetID(), nullptr, 0, &num_lwps); in ReinitializeThreads()
934 error = PtraceWrapper(PT_GETLWPLIST, GetID(), lwp_ids.data(), in ReinitializeThreads()
1004 PtraceWrapper(PT_CONTINUE, GetID(), reinterpret_cast<void *>(1), 0); in MonitorClone()
1007 "unable to resume parent process {1}: {0}", GetID()); in MonitorClone()