Lines Matching refs:GetID

226       if (t->GetID() == static_cast<lldb::tid_t>(info.psi_lwpid)) {  in MonitorSIGTRAP()
374 static_cast<lldb::tid_t>(info.psi_lwpid) == thread.GetID()) in MonitorSignal()
444 resume_actions.GetActionForThread(thread->GetID(), true); in ComputeSignalInfo()
454 signaled_lwp = thread->GetID(); in ComputeSignalInfo()
484 LLDB_LOG(log, "pid {0}", GetID()); in Resume()
498 resume_actions.GetActionForThread(thread.GetID(), true); in Resume()
501 ResumeAction suspend_action{thread.GetID(), eStateSuspended, in Resume()
505 LLDB_LOG(log, "no action specified for pid {0} tid {1}", GetID(), in Resume()
506 thread.GetID()); in Resume()
513 action->state, action->signal, GetID(), thread.GetID()); in Resume()
533 __FUNCTION__, StateAsCString(action->state), GetID(), in Resume()
534 thread.GetID()); in Resume()
543 ret = PtraceWrapper(PT_SET_SIGINFO, GetID(), &siginfo.get(), in Resume()
551 PtraceWrapper(PT_CONTINUE, GetID(), reinterpret_cast<void *>(1), signal); in Resume()
557 Status NativeProcessNetBSD::Halt() { return StopProcess(GetID()); } in Halt()
566 if (GetID() == LLDB_INVALID_PROCESS_ID) in Detach()
569 return PtraceWrapper(PT_DETACH, GetID(), reinterpret_cast<void *>(1)); in Detach()
575 if (kill(GetID(), signo)) in Signal()
581 Status NativeProcessNetBSD::Interrupt() { return StopProcess(GetID()); } in Interrupt()
585 LLDB_LOG(log, "pid {0}", GetID()); in Kill()
596 LLDB_LOG(log, "ignored for PID {0} due to current state: {1}", GetID(), in Kill()
611 if (kill(GetID(), SIGKILL) != 0) { in Kill()
687 vm = kinfo_getvmmap(GetID(), &count); in PopulateMemoryRegionCache()
735 m_mem_region_cache.size(), GetID()); in PopulateMemoryRegionCache()
796 ::pid_t wait_pid = llvm::sys::RetryAfterSignal(-1, waitpid, GetID(), &status, in SigchldHandler()
804 LLDB_LOG(log, "waitpid ({0}, &status, _) failed: {1}", GetID(), error); in SigchldHandler()
811 wait_pid == static_cast<::pid_t>(GetID())); in SigchldHandler()
815 GetID(), wait_pid, status, exited); in SigchldHandler()
828 if (thread->GetID() == thread_id) { in HasThreadNoLock()
840 LLDB_LOG(log, "pid {0} adding thread with tid {1}", GetID(), thread_id); in AddThread()
856 LLDB_LOG(log, "pid {0} removing thread with tid {1}", GetID(), thread_id); in RemoveThread()
863 if ((*it)->GetID() == thread_id) { in RemoveThread()
894 SetCurrentThreadID(m_threads.front()->GetID()); in Attach()
915 Status error = NativeProcessNetBSD::PtraceWrapper(PT_IO, GetID(), &io); in ReadMemory()
944 Status error = NativeProcessNetBSD::PtraceWrapper(PT_IO, GetID(), &io); in WriteMemory()
975 Status error = NativeProcessNetBSD::PtraceWrapper(PT_IO, GetID(), &io); in GetAuxvData()
990 PtraceWrapper(PT_GET_EVENT_MASK, GetID(), &events, sizeof(events)); in SetupTrace()
996 status = PtraceWrapper(PT_SET_EVENT_MASK, GetID(), &events, sizeof(events)); in SetupTrace()
1016 Status error = PtraceWrapper(op, GetID(), &info, sizeof(info)); in ReinitializeThreads()
1024 error = PtraceWrapper(op, GetID(), &info, sizeof(info)); in ReinitializeThreads()
1088 PtraceWrapper(PT_CONTINUE, GetID(), reinterpret_cast<void *>(1), 0); in MonitorClone()
1091 "unable to resume parent process {1}: {0}", GetID()); in MonitorClone()
1104 error = PtraceWrapper(PT_DUMPCORE, GetID(), path.data(), path.size()); in SaveCore()
1115 error = PtraceWrapper(PT_DUMPCORE, GetID(), path.data(), path.size()); in SaveCore()