Home
last modified time | relevance | path

Searched refs:GetID (Results 1 – 25 of 168) sorted by relevance

1234567

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.cpp432 signaled_lwp = thread->GetID(); in ComputeSignalInfo()
462 LLDB_LOG(log, "pid {0}", GetID()); in Resume()
484 thread.GetID()); in Resume()
491 action->state, action->signal, GetID(), thread.GetID()); in Resume()
512 thread.GetID()); in Resume()
553 if (kill(GetID(), signo)) in Signal()
565 LLDB_LOG(log, "pid {0}", GetID()); in Kill()
591 if (kill(GetID(), SIGKILL) != 0) { in Kill()
667 vm = kinfo_getvmmap(GetID(), &count); in PopulateMemoryRegionCache()
808 if (thread->GetID() == thread_id) { in HasThreadNoLock()
[all …]
H A DNativeThreadNetBSD.cpp45 Status ret = NativeProcessNetBSD::PtraceWrapper(PT_RESUME, m_process.GetID(), in Resume()
46 nullptr, GetID()); in Resume()
49 ret = NativeProcessNetBSD::PtraceWrapper(PT_CLEARSTEP, m_process.GetID(), in Resume()
50 nullptr, GetID()); in Resume()
57 Status ret = NativeProcessNetBSD::PtraceWrapper(PT_RESUME, m_process.GetID(), in SingleStep()
58 nullptr, GetID()); in SingleStep()
61 ret = NativeProcessNetBSD::PtraceWrapper(PT_SETSTEP, m_process.GetID(), in SingleStep()
62 nullptr, GetID()); in SingleStep()
70 nullptr, GetID()); in Suspend()
79 LLDB_LOG(log, "tid = {0} in called with signal {1}", GetID(), signo); in SetStoppedBySignal()
[all …]
H A DNativeRegisterContextNetBSD.cpp25 m_thread.GetID()); in DoRegisterSet()
33 return GetProcess().GetID(); in GetProcessPid()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/
H A DUserID.h47 lldb::user_id_t GetID() const { return m_uid; } in GetID() function
68 bool operator()(const UserID &rhs) const { return m_uid == rhs.GetID(); } in operator()
81 return lhs.GetID() == rhs.GetID();
85 return lhs.GetID() != rhs.GetID();
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.cpp424 LLDB_LOG(log, "pid {0}", 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()
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()
768 if (thread->GetID() == thread_id) { in HasThreadNoLock()
[all …]
H A DNativeThreadFreeBSD.cpp45 Status ret = NativeProcessFreeBSD::PtraceWrapper(PT_RESUME, GetID()); in Resume()
48 ret = NativeProcessFreeBSD::PtraceWrapper(PT_CLEARSTEP, GetID()); in Resume()
60 Status ret = NativeProcessFreeBSD::PtraceWrapper(PT_RESUME, GetID()); in SingleStep()
63 ret = NativeProcessFreeBSD::PtraceWrapper(PT_SETSTEP, GetID()); in SingleStep()
70 Status ret = NativeProcessFreeBSD::PtraceWrapper(PT_SUSPEND, GetID()); in Suspend()
79 LLDB_LOG(log, "tid = {0} in called with signal {1}", GetID(), signo); in SetStoppedBySignal()
185 static_cast<int>(GetProcess().GetID())}; in GetName()
198 GetID(), m_state, strerror(errno)); in GetName()
205 if (procinfo.ki_tid == static_cast<lwpid_t>(GetID())) in GetName()
237 LLDB_LOG(log, "tid = {0} in state {1} cannot answer stop reason", GetID(), in GetStopReason()
H A DNativeRegisterContextFreeBSD_arm64.cpp74 return NativeProcessFreeBSD::PtraceWrapper(PT_GETREGS, m_thread.GetID(), in ReadRegisterSet()
78 PT_GETFPREGS, m_thread.GetID(), in ReadRegisterSet()
87 return NativeProcessFreeBSD::PtraceWrapper(PT_SETREGS, m_thread.GetID(), in WriteRegisterSet()
91 PT_SETFPREGS, m_thread.GetID(), in WriteRegisterSet()
237 m_thread.GetID(), &m_dbreg); in ReadHardwareDebugInfo()
272 return NativeProcessFreeBSD::PtraceWrapper(PT_SETDBREGS, m_thread.GetID(), in WriteHardwareDebugRegs()
H A DNativeRegisterContextFreeBSD_arm.cpp65 return NativeProcessFreeBSD::PtraceWrapper(PT_GETREGS, m_thread.GetID(), in ReadRegisterSet()
69 PT_GETVFPREGS, m_thread.GetID(), in ReadRegisterSet()
78 return NativeProcessFreeBSD::PtraceWrapper(PT_SETREGS, m_thread.GetID(), in WriteRegisterSet()
82 PT_SETVFPREGS, m_thread.GetID(), in WriteRegisterSet()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.cpp92 m_process ? m_process->GetID() : LLDB_INVALID_PROCESS_ID); in DidAttach()
113 m_process ? m_process->GetID() : LLDB_INVALID_PROCESS_ID, in DidAttach()
147 m_process ? m_process->GetID() : LLDB_INVALID_PROCESS_ID, in DidAttach()
319 m_process ? m_process->GetID() : LLDB_INVALID_PROCESS_ID); in SetRendezvousBreakpoint()
329 m_process ? m_process->GetID() : LLDB_INVALID_PROCESS_ID, in SetRendezvousBreakpoint()
366 m_process ? m_process->GetID() : LLDB_INVALID_PROCESS_ID); in SetRendezvousBreakpoint()
368 target.RemoveBreakpointByID(dyld_break->GetID()); in SetRendezvousBreakpoint()
377 m_process ? m_process->GetID() : LLDB_INVALID_PROCESS_ID); in SetRendezvousBreakpoint()
381 m_dyld_bid = dyld_break->GetID(); in SetRendezvousBreakpoint()
751 __FUNCTION__, m_process->GetID()); in ResolveExecutableModule()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp285 m_current_process->GetID()); in LaunchProcess()
307 m_current_process->GetID()); in LaunchProcess()
312 m_current_process->GetID()); in LaunchProcess()
440 __FUNCTION__, process->GetID(), in InitializeDelegate()
455 process->GetID()); in SendWResponse()
698 lldb::tid_t tid = thread->GetID(); in GetJSONThreadsInfo()
769 m_current_process->GetID(), tid); in SendStopReplyPacketForThread()
982 __FUNCTION__, process->GetID()); in HandleInferiorState_Exited()
1325 lldb::pid_t pid = m_current_process->GetID(); in Handle_qProcessInfo()
1858 thread->GetID()); in Handle_qfThreadInfo()
[all …]
H A DThreadGDBRemote.cpp43 LLDB_LOG(log, "this = {0}, pid = {1}, tid = {2}", this, process.GetID(), in ThreadGDBRemote()
44 GetID()); in ThreadGDBRemote()
59 process_sp ? process_sp->GetID() : LLDB_INVALID_PROCESS_ID, GetID()); in ~ThreadGDBRemote()
313 gdb_process->GetGDBRemote().GetpPacketSupported(GetID()); in CreateRegisterContextForFrame()
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectThreadUtil.cpp31 if (!thread || !HandleOneThread(thread->GetID(), result)) in DoExecute()
48 tids.push_back(thread_sp->GetID()); in DoExecute()
73 tids.push_back(thread->GetID()); in DoExecute()
103 if (!HandleOneThread(thread->GetID(), result)) { in DoExecute()
169 tids.push_back(thread_sp->GetID()); in DoExecute()
173 tids.push_back(thread.GetID()); in DoExecute()
192 tids.push_back(thread->GetID()); in DoExecute()
/freebsd-13.1/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointIDList.cpp180 &canonical_id_str, bp_id->GetBreakpointID(), bp_loc->GetID()); in FindAndReplaceIDRanges()
253 break_id_t cur_bp_id = breakpoint->GetID(); in FindAndReplaceIDRanges()
264 if ((bp_loc->GetID() >= start_loc_id) && in FindAndReplaceIDRanges()
265 (bp_loc->GetID() <= end_loc_id)) { in FindAndReplaceIDRanges()
268 bp_loc->GetID()); in FindAndReplaceIDRanges()
276 if (bp_loc->GetID() <= end_loc_id) { in FindAndReplaceIDRanges()
279 bp_loc->GetID()); in FindAndReplaceIDRanges()
313 &canonical_id_str, bkpt_sp->GetID(), LLDB_INVALID_BREAK_ID); in FindAndReplaceIDRanges()
H A DBreakpointLocation.cpp192 return m_options_up->InvokeCallback(context, m_owner.GetID(), GetID()); in InvokeCallback()
194 return m_owner.InvokeCallback(context, GetID()); in InvokeCallback()
475 process_sp->RemoveOwnerFromBreakpointSite(GetBreakpoint().GetID(), in ClearBreakpointSite()
476 GetID(), m_bp_site_sp); in ClearBreakpointSite()
478 m_bp_site_sp->RemoveOwner(GetBreakpoint().GetID(), GetID()); in ClearBreakpointSite()
495 BreakpointID::GetCanonicalReference(s, m_owner.GetID(), GetID()); in GetDescription()
638 GetID(), tid, in Dump()
H A DBreakpointLocationCollection.cpp29 FindByIDPair(bp_loc->GetBreakpoint().GetID(), bp_loc->GetID()); in Add()
52 return m_break_id == bp_loc->GetBreakpoint().GetID() && in operator ()()
53 m_break_loc_id == bp_loc->GetID(); in operator ()()
H A DBreakpointList.cpp42 return bp_sp->GetID(); in Add()
50 [&](const BreakpointSP &bp) { return bp->GetID() == break_id; }); in Remove()
114 [&](const BreakpointSP &bp) { return bp->GetID() == break_id; }); in GetBreakpointIDIterator()
121 [&](const BreakpointSP &bp) { return bp->GetID() == break_id; }); in GetBreakpointIDConstIterator()
H A DWatchpointList.cpp31 return wp_sp->GetID(); in Add()
90 return m_watch_id == wp->GetID(); in operator ()()
124 return wp_sp->GetID(); in FindIDByAddress()
132 return wp_sp->GetID(); in FindIDBySpec()
163 IDs.push_back((*pos)->GetID()); in GetWatchpointIDs()
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DThread.cpp234 static_cast<void *>(this), GetID()); in Thread()
242 static_cast<void *>(this), GetID()); in ~Thread()
451 static_cast<void *>(this), GetID(), in SetStopInfo()
967 GetID(), eVoteNoOpinion); in ShouldReportStop()
976 GetID(), eVoteNoOpinion); in ShouldReportStop()
984 GetID(), eVoteNoOpinion); in ShouldReportStop()
994 GetID()); in ShouldReportStop()
1012 GetID(), thread_vote); in ShouldReportStop()
1211 GetID(), force); in DiscardThreadPlans()
1449 frame_idx, GetID()); in ReturnFromFrameWithIndex()
[all …]
H A DThreadList.cpp112 if (m_threads[idx]->GetID() == tid) { in FindThreadByID()
148 if (m_threads[idx]->GetID() == tid) { in RemoveThreadByID()
388 thread_sp->GetID(), vote, result); in ShouldReportStop()
434 (*pos)->GetIndexID(), (*pos)->GetID()); in ShouldReportRun()
654 m_selected_tid = m_threads[0]->GetID(); in GetSelectedThread()
679 m_selected_tid = selected_thread_sp->GetID(); in SetSelectedThreadByIndexID()
723 const lldb::tid_t tid = (*rhs_pos)->GetID(); in Update()
728 if (m_threads[idx]->GetID() == tid || in Update()
729 (backing_thread && backing_thread->GetID() == tid)) { in Update()
756 m_tid = thread_sp->GetID(); in ExpressionExecutionThreadPusher()
/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DBlock.cpp73 s->Printf(", parent = {0x%8.8" PRIx64 "}", parent_block->GetID()); in Dump()
112 if (block_id == GetID()) in FindBlockByID()
155 s->Printf(", Block{0x%8.8" PRIx64 "}", GetID()); in DumpSymbolContext()
345 GetID(), (uint32_t)m_ranges.GetSize(), block_start_addr, in AddRange()
346 block_end_addr, parent_block->GetID(), function->GetID(), in AddRange()
354 GetID(), (uint32_t)m_ranges.GetSize(), block_start_addr, in AddRange()
355 block_end_addr, parent_block->GetID(), function->GetID(), in AddRange()
471 return sym_file->GetDeclContextForUID(GetID()); in GetDeclContext()
H A DTypeMap.cpp31 m_types.insert(std::make_pair(type_sp->GetID(), type_sp)); in Insert()
36 user_id_t type_uid = type_sp->GetID(); in InsertUnique()
40 pos != end && pos->second->GetID() == type_uid; ++pos) { in InsertUnique()
112 lldb::user_id_t uid = type_sp->GetID(); in Remove()
/freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/
H A DNativeProcessProtocol.cpp108 if (thread->GetID() == tid) in GetThreadByIDUnlocked()
197 GetID(), unwatch_thread_sp->GetID(), remove_error); in SetWatchpoint()
277 GetID(), rollback_thread_sp->GetID(), remove_error); in SetHardwareBreakpoint()
316 GetID()); in SynchronouslyNotifyProcessStateChanged()
321 LLDB_LOG(log, "process {0} exec()ed", GetID()); in NotifyDidExec()
583 GetID(), breakpoint_addr); in FixupBreakpointPCAsNeeded()
592 LLDB_LOG(log, "pid {0} tid {1}: changing PC from {2:x} to {3:x}", GetID(), in FixupBreakpointPCAsNeeded()
593 thread.GetID(), initial_pc_addr, breakpoint_addr); in FixupBreakpointPCAsNeeded()
600 LLDB_LOG(log, "pid {0} tid {1}: failed to set PC: {2}", GetID(), in FixupBreakpointPCAsNeeded()
601 thread.GetID(), error); in FixupBreakpointPCAsNeeded()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp807 type_sp->GetID()); in ParseEnum()
1013 if (class_type->GetID() != decl_ctx_die.GetID() || in ParseSubroutine()
1077 die.GetID(), abs_die.GetOffset()); in ParseSubroutine()
1279 metadata.SetUserID(die.GetID()); in ParseSubroutine()
1348 m_ast.SetMetadataAsUserID(type, die.GetID()); in ParseArrayType()
1516 type_sp->GetID()); in ParseStructureLikeDIE()
1573 type_sp->GetID()); in ParseStructureLikeDIE()
1606 metadata.SetUserID(die.GetID()); in ParseStructureLikeDIE()
2297 const user_id_t func_user_id = die.GetID(); in ParseFunctionFromDWARF()
2678 parent_die.GetID()); in ParseSingleMember()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp129 m_process->GetID()); in GetDynamicRegisterInfo()
178 m_process->GetID()); in UpdateThreadList()
326 thread->GetID(), thread->GetProtocolID(), reg_data_addr); in CreateRegisterContextForThread()
336 thread->GetID(), thread->GetProtocolID()); in CreateRegisterContextForThread()
340 thread->GetID()); in CreateRegisterContextForThread()
360 thread->GetID()); in CreateRegisterContextForThread()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.cpp311 return StopInfo::CreateStopReasonWithWatchpointID(thread, wp_sp->GetID()); in GetStopInfoForHardwareBP()
328 bp_sp->GetID()); in GetStopInfoForHardwareBP()
427 wp_sp->GetID()); in CreateStopReasonWithMachException()
470 wp_sp->GetID()); in CreateStopReasonWithMachException()
515 thread, bp_site_sp->GetID()); in CreateStopReasonWithMachException()

1234567