Home
last modified time | relevance | path

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

1234567

/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
DNativeProcessNetBSD.cpp227 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()
[all …]
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()
69 Status ret = NativeProcessNetBSD::PtraceWrapper(PT_SUSPEND, m_process.GetID(), in Suspend()
70 nullptr, GetID()); in Suspend()
[all …]
DNativeRegisterContextNetBSD.cpp25 m_thread.GetID()); in DoRegisterSet()
33 return GetProcess().GetID(); in GetProcessPid()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
DNativeProcessFreeBSD.cpp259 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()
[all …]
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()
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()
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-12-stable/contrib/llvm-project/lldb/include/lldb/Utility/
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-12-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
DDynamicLoaderPOSIXDYLD.cpp92 m_process ? m_process->GetID() : LLDB_INVALID_PROCESS_ID); in DidAttach()
97 __FUNCTION__, 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()
165 m_process ? m_process->GetID() : LLDB_INVALID_PROCESS_ID); in DidAttach()
236 __FUNCTION__, m_process ? m_process->GetID() : LLDB_INVALID_PROCESS_ID); in ProbeEntry()
245 m_process ? m_process->GetID() : LLDB_INVALID_PROCESS_ID, entry); in ProbeEntry()
276 dyld_instance->m_process ? dyld_instance->m_process->GetID() in EntryBreakpointHit()
292 __FUNCTION__, dyld_instance->m_process->GetID(), break_id); in EntryBreakpointHit()
298 __FUNCTION__, dyld_instance->m_process->GetID(), break_id); in EntryBreakpointHit()
[all …]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunicationServerLLGS.cpp268 m_debugged_processes[m_current_process->GetID()] = std::move(*process_or); in LaunchProcess()
285 m_current_process->GetID()); in LaunchProcess()
307 m_current_process->GetID()); in LaunchProcess()
312 m_current_process->GetID()); in LaunchProcess()
328 pid, m_current_process->GetID()); in AttachToProcess()
339 m_debugged_processes[m_current_process->GetID()] = std::move(*process_or); in AttachToProcess()
440 __FUNCTION__, process->GetID(), in InitializeDelegate()
455 process->GetID()); in SendWResponse()
463 LLDB_LOG(log, "pid = {0}, returning exit type {1}", process->GetID(), in SendWResponse()
698 lldb::tid_t tid = thread->GetID(); in GetJSONThreadsInfo()
[all …]
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-12-stable/contrib/llvm-project/lldb/source/Commands/
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-12-stable/contrib/llvm-project/lldb/source/Target/
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()
742 __FUNCTION__, GetID(), GetProtocolID()); in ShouldStop()
750 __FUNCTION__, GetID(), GetProtocolID()); in ShouldStop()
762 __FUNCTION__, GetID(), GetProtocolID(), in ShouldStop()
772 __FUNCTION__, static_cast<void *>(this), GetID(), GetProtocolID(), in ShouldStop()
779 s, GetID(), eDescriptionLevelVerbose, true /* internal */, in ShouldStop()
948 s, GetID(), eDescriptionLevelVerbose, true /* internal */, in ShouldStop()
967 GetID(), eVoteNoOpinion); in ShouldReportStop()
[all …]
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-12-stable/contrib/llvm-project/lldb/source/Breakpoint/
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()
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()
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 ()()
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()
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()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Symbol/
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()
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-12-stable/contrib/llvm-project/lldb/source/Host/common/
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-12-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFASTParserClang.cpp212 TypeSP type_sp(new Type(die.GetID(), dwarf, pcm_type_sp->GetName(), in ParseTypeFromClangModule()
609 DEBUG_PRINTF("0x%8.8" PRIx64 ": %s (\"%s\") type => 0x%8.8lx\n", die.GetID(), in ParseTypeModifier()
763 die.GetID(), dwarf, attrs.name, attrs.byte_size, nullptr, in ParseTypeModifier()
807 type_sp->GetID()); in ParseEnum()
815 GetCachedClangDeclContextForDIE(dwarf->GetDIE(type_sp->GetID())); in ParseEnum()
821 DEBUG_PRINTF("0x%8.8" PRIx64 ": %s (\"%s\")\n", die.GetID(), in ParseEnum()
856 die.GetID(), dwarf, attrs.name, attrs.byte_size, nullptr, in ParseEnum()
900 DEBUG_PRINTF("0x%8.8" PRIx64 ": %s (\"%s\")\n", die.GetID(), in ParseSubroutine()
998 m_ast.SetMetadataAsUserID(objc_method_decl, die.GetID()); in ParseSubroutine()
1013 if (class_type->GetID() != decl_ctx_die.GetID() || in ParseSubroutine()
[all …]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/
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-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
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