Home
last modified time | relevance | path

Searched refs:GetProcess (Results 1 – 25 of 112) sorted by relevance

12345

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DThreadGDBRemote.cpp56 ProcessSP process_sp(GetProcess()); in ~ThreadGDBRemote()
106 ProcessSP process_sp(GetProcess()); in GetQueueName()
136 ProcessSP process_sp(GetProcess()); in GetQueueKind()
160 ProcessSP process_sp(GetProcess()); in GetQueueID()
175 ProcessSP process_sp(GetProcess()); in GetQueue()
187 ProcessSP process_sp(GetProcess()); in GetQueueLibdispatchQueueAddress()
227 ProcessSP process_sp(GetProcess()); in FetchThreadExtendedInfo()
243 ProcessSP process_sp(GetProcess()); in WillResume()
308 ProcessSP process_sp(GetProcess()); in CreateRegisterContextForFrame()
343 ProcessSP process_sp(GetProcess()); in CalculateStopInfo()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStopInfo.cpp36 m_stop_id(thread.GetProcess()->GetStopID()), in StopInfo()
37 m_resume_id(thread.GetProcess()->GetResumeID()), m_value(value), in StopInfo()
44 return thread_sp->GetProcess()->GetStopID() == m_stop_id; in IsValid()
51 m_stop_id = thread_sp->GetProcess()->GetStopID(); in MakeStopInfoValid()
52 m_resume_id = thread_sp->GetProcess()->GetResumeID(); in MakeStopInfoValid()
60 lldb::StateType ret_type = thread_sp->GetProcess()->GetPrivateState(); in HasTargetRunSinceMe()
72 uint32_t curr_resume_id = thread_sp->GetProcess()->GetResumeID(); in HasTargetRunSinceMe()
74 thread_sp->GetProcess()->GetLastUserExpressionResumeID(); in HasTargetRunSinceMe()
112 thread_sp->GetProcess()->GetBreakpointSiteList().FindByID(m_value)); in StoreBPInfo()
140 ProcessSP process_sp(thread.GetProcess()); in IsValidForOperatingSystemThread()
[all …]
H A DThread.cpp311 const Debugger &debugger = GetProcess()->GetTarget().GetDebugger(); in SetSelectedFrameByIndexNoisily()
339 (GetProcess()->GetWarningsOptimization() || in FrameSelectedCallback()
340 GetProcess()->GetWarningsUnsupportedLanguage())) { in FrameSelectedCallback()
343 GetProcess()->PrintWarningOptimization(sc); in FrameSelectedCallback()
344 GetProcess()->PrintWarningUnsupportedLanguage(sc); in FrameSelectedCallback()
353 ProcessSP process_sp(GetProcess()); in GetStopInfo()
393 ProcessSP process_sp(GetProcess()); in GetPrivateStopInfo()
450 ProcessSP process_sp(GetProcess()); in StopInfoIsUpToDate()
474 ProcessSP process_sp(GetProcess()); in SetStopInfo()
523 ProcessSP process_sp(GetProcess()); in CheckpointThreadState()
[all …]
H A DUnwindLLDB.cpp29 ProcessSP process_sp(thread.GetProcess()); in UnwindLLDB()
52 ProcessSP process_sp(m_thread.GetProcess()); in DoGetFrameCount()
75 ProcessSP process_sp(m_thread.GetProcess()); in AddFirstFrame()
404 ProcessSP process_sp(m_thread.GetProcess()); in DoGetFrameInfoAtIndex()
452 ProcessSP process_sp(m_thread.GetProcess()); in DoCreateRegisterContextForFrame()
H A DRegisterContext.cpp28 m_stop_id(thread.GetProcess()->GetStopID()) {} in RegisterContext()
33 ProcessSP process_sp(m_thread.GetProcess()); in InvalidateIfNeeded()
336 ProcessSP process_sp(m_thread.GetProcess()); in ReadRegisterValueFromMemory()
371 ProcessSP process_sp(m_thread.GetProcess()); in WriteRegisterValueToMemory()
H A DThreadPlanShouldStopHere.cpp85 ProcessSP process_sp(current_plan->GetThread().GetProcess()); in DefaultShouldStopHereCallback()
134 ProcessSP process_sp(current_plan->GetThread().GetProcess()); in DefaultStepFromHereCallback()
H A DRegisterContextUnwind.cpp1752 if (ProcessSP process_sp = m_thread.GetProcess()) { in TryFallbackUnwindPlan()
1813 if (ProcessSP process_sp = m_thread.GetProcess()) { in TryFallbackUnwindPlan()
1958 ABISP abi_sp = m_thread.GetProcess()->GetABI(); in ReadFrameAddress()
2033 if (ABISP abi_sp = m_thread.GetProcess()->GetABI()) in ReadFrameAddress()
2045 Process &process = *m_thread.GetProcess(); in ReadFrameAddress()
2075 address = m_thread.GetProcess()->FixDataAddress(address); in ReadFrameAddress()
2091 if (ABISP abi_sp = m_thread.GetProcess()->GetABI()) in GetReturnAddressHint()
2156 ABISP abi_sp = m_thread.GetProcess()->GetABI(); in ReadGPRValue()
2191 if (ABISP abi_sp = m_thread.GetProcess()->GetABI()) { in ReadGPRValue()
2241 if (ABISP abi_sp = m_thread.GetProcess()->GetABI()) in ReadRegister()
[all …]
H A DStructuredDataPlugin.cpp41 ProcessSP StructuredDataPlugin::GetProcess() const { in GetProcess() function in StructuredDataPlugin
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeRegisterContextFreeBSD.cpp23 NativeProcessFreeBSD &NativeRegisterContextFreeBSD::GetProcess() { in GetProcess() function in NativeRegisterContextFreeBSD
24 return static_cast<NativeProcessFreeBSD &>(m_thread.GetProcess()); in GetProcess()
28 return GetProcess().GetID(); in GetProcessPid()
H A DNativeRegisterContextFreeBSD.h35 virtual NativeProcessFreeBSD &GetProcess();
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeRegisterContextNetBSD.cpp28 NativeProcessNetBSD &NativeRegisterContextNetBSD::GetProcess() { in GetProcess() function in NativeRegisterContextNetBSD
29 return static_cast<NativeProcessNetBSD &>(m_thread.GetProcess()); in GetProcess()
33 return GetProcess().GetID(); in GetProcessPid()
H A DNativeRegisterContextNetBSD.h37 virtual NativeProcessNetBSD &GetProcess();
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBQueue.cpp91 if (stop_locker.TryLock(&queue_sp->GetProcess()->GetRunLock())) { in FetchThreads()
111 if (stop_locker.TryLock(&queue_sp->GetProcess()->GetRunLock())) { in FetchItems()
143 ProcessSP process_sp = queue_sp->GetProcess(); in GetThreadAtIndex()
183 lldb::SBProcess GetProcess() { in GetProcess() function in lldb_private::QueueImpl
187 result.SetSP(queue_sp->GetProcess()); in GetProcess()
308 SBProcess SBQueue::GetProcess() { in GetProcess() function in SBQueue
311 return m_opaque_sp->GetProcess(); in GetProcess()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DHistoryThread.cpp54 *this, 0, GetProcess()->GetAddressByteSize(), m_pcs[0]); in GetRegisterContext()
78 if (GetProcess()->HasAssignedIndexIDToThread( in GetExtendedBacktraceOriginatingIndexID()
80 return GetProcess()->AssignIndexIDToThread( in GetExtendedBacktraceOriginatingIndexID()
H A DHistoryUnwind.cpp45 &frame->GetThread()->GetProcess()->GetTarget()); in DoCreateRegisterContextForFrame()
49 frame->GetThread()->GetProcess()->GetAddressByteSize(), pc); in DoCreateRegisterContextForFrame()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleThreadPlanStepThroughObjCTrampoline.cpp144 if (ABISP abi_sp = GetThread().GetProcess()->GetABI()) { in ShouldStop()
178 ObjCLanguageRuntime::Get(*GetThread().GetProcess()); in ShouldStop()
183 GetThread().GetProcess()->DeallocateMemory(m_sel_str_addr); in ShouldStop()
323 ProcessSP process_sp = GetThread().GetProcess(); in DoPlanExplainsStop()
402 = GetThread().GetProcess()->GetLanguageRuntime(eLanguageTypeObjC); in ShouldStop()
H A DAppleObjCClassDescriptorV2.cpp450 lldb_private::Process *process = m_runtime.GetProcess(); in ProcessMethodList()
480 lldb_private::Process *process = m_runtime.GetProcess(); in ProcessRelativeMethodLists()
530 lldb_private::Process *process = m_runtime.GetProcess(); in Describe()
603 lldb_private::Process *process = m_runtime.GetProcess(); in GetClassName()
622 lldb_private::Process *process = m_runtime.GetProcess(); in GetSuperclass()
637 lldb_private::Process *process = m_runtime.GetProcess(); in GetMetaclass()
654 lldb_private::Process *process = m_runtime.GetProcess(); in GetInstanceSize()
677 if (auto *process = m_runtime.GetProcess()) in GetImplementationLanguage()
704 Process *process(runtime.GetProcess()); in fill()
H A DAppleObjCRuntimeV2.cpp1570 Process *process = GetProcess(); in GetTaggedPointerObfuscator()
1601 Process *process = GetProcess(); in GetISAHashTablePointer()
1630 Process *process = runtime.GetProcess(); in CreateSharedCacheImageHeaders()
1703 Process *process = m_runtime.GetProcess(); in UpdateIfNeeded()
1883 if (Process *process = m_runtime.GetProcess()) { in ComputeHelper()
2007 Process *process = m_runtime.GetProcess(); in UpdateISAToDescriptorMap()
2274 Process *process = m_runtime.GetProcess(); in UpdateISAToDescriptorMap()
2474 Process *process = GetProcess(); in GetSharedCacheReadOnlyAddress()
2529 Process *process = GetProcess(); in UpdateISAToDescriptorMapIfNeeded()
2602 Process *process = GetProcess(); in RealizedClassGenerationCountChanged()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/AIX/
H A DNativeThreadAIX.h41 NativeProcessAIX &GetProcess();
43 const NativeProcessAIX &GetProcess() const;
H A DNativeThreadAIX.cpp46 NativeProcessAIX &NativeThreadAIX::GetProcess() { in GetProcess() function in NativeThreadAIX
50 const NativeProcessAIX &NativeThreadAIX::GetProcess() const { in GetProcess() function in NativeThreadAIX
/freebsd/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/x86/
H A DUnwindAssembly-x86.cpp51 ProcessSP process_sp(thread.GetProcess()); in GetNonCallSiteUnwindPlanFromAssembly()
75 ProcessSP process_sp(thread.GetProcess()); in AugmentUnwindPlanFromCallSite()
183 ProcessSP process_sp = thread.GetProcess(); in GetFastUnwindPlan()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DSaveCoreOptions.cpp91 if (m_process_sp != thread_sp->GetProcess()) { in AddThread()
97 m_process_sp = thread_sp->GetProcess(); in AddThread()
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBExecutionContextExtensions.i5 …process = property(GetProcess, None, doc='''A read only property that returns the same result as G…
/freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/common/
H A DThreadPostMortemTrace.cpp36 *this, 0, GetProcess()->GetAddressByteSize(), LLDB_INVALID_ADDRESS); in CreateRegisterContextForFrame()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DRuntime.h22 Process *GetProcess() { return m_process; } in GetProcess() function

12345