Home
last modified time | relevance | path

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

1234567

/openbsd/gnu/llvm/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 …]
/openbsd/gnu/llvm/lldb/source/Target/
H A DStopInfo.cpp34 m_stop_id(thread.GetProcess()->GetStopID()), in StopInfo()
35 m_resume_id(thread.GetProcess()->GetResumeID()), m_value(value), in StopInfo()
42 return thread_sp->GetProcess()->GetStopID() == m_stop_id; in IsValid()
49 m_stop_id = thread_sp->GetProcess()->GetStopID(); in MakeStopInfoValid()
50 m_resume_id = thread_sp->GetProcess()->GetResumeID(); in MakeStopInfoValid()
70 uint32_t curr_resume_id = thread_sp->GetProcess()->GetResumeID(); in HasTargetRunSinceMe()
72 thread_sp->GetProcess()->GetLastUserExpressionResumeID(); in HasTargetRunSinceMe()
136 ProcessSP process_sp(thread.GetProcess()); in IsValidForOperatingSystemThread()
1238 return thread_sp->GetProcess()->GetStopOnExec(); in ShouldStop()
1254 thread_sp->GetProcess()->DidExec(); in PerformAction()
[all …]
H A DThread.cpp341 ProcessSP process_sp(GetProcess()); in GetStopInfo()
381 ProcessSP process_sp(GetProcess()); in GetPrivateStopInfo()
432 ProcessSP process_sp(GetProcess()); in StopInfoIsUpToDate()
456 ProcessSP process_sp(GetProcess()); in SetStopInfo()
505 ProcessSP process_sp(GetProcess()); in CheckpointThreadState()
795 GetProcess()->DumpThreadPlansForTID( in ShouldStop()
969 GetProcess()->DumpThreadPlansForTID( in ShouldStop()
1408 ProcessSP process_sp(GetProcess()); in CalculateTarget()
1665 Process *process = GetProcess().get(); in SafeToCallFunctions()
1920 Process *process = GetProcess().get(); in StepIn()
[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()
399 ProcessSP process_sp(m_thread.GetProcess()); in DoGetFrameInfoAtIndex()
447 ProcessSP process_sp(m_thread.GetProcess()); in DoCreateRegisterContextForFrame()
/openbsd/gnu/llvm/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()
/openbsd/gnu/llvm/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()
/openbsd/gnu/llvm/lldb/source/Plugins/Process/OpenBSDKernel/
H A DRegisterContextOpenBSDKernel_i386.cpp58 m_thread.GetProcess()->ReadMemory(m_pcb_addr, &pcb, sizeof(pcb), error); in ReadRegister()
70 value = m_thread.GetProcess()->ReadPointerFromMemory(pcb.pcb_ebp, error); in ReadRegister()
72 value = m_thread.GetProcess()->ReadPointerFromMemory(pcb.pcb_ebp + 4, in ReadRegister()
85 rd = m_thread.GetProcess()->ReadMemory(pcb.pcb_esp, &sf, sizeof(sf), error); in ReadRegister()
H A DRegisterContextOpenBSDKernel_x86_64.cpp59 size_t rd = m_thread.GetProcess()->ReadMemory(m_pcb_addr, &pcb, sizeof(pcb), in ReadRegister()
70 rd = m_thread.GetProcess()->ReadMemory(pcb.pcb_rsp, &sf, sizeof(sf), error); in ReadRegister()
99 value = m_thread.GetProcess()->ReadPointerFromMemory(pcb.pcb_rbp, error); in ReadRegister()
H A DRegisterContextOpenBSDKernel_arm64.cpp58 size_t rd = m_thread.GetProcess()->ReadMemory(m_pcb_addr, &pcb, sizeof(pcb), in ReadRegister()
69 rd = m_thread.GetProcess()->ReadMemory(pcb.pcb_sp, &sf, sizeof(sf), error); in ReadRegister()
/openbsd/gnu/llvm/lldb/source/API/
H A DSBQueue.cpp93 if (stop_locker.TryLock(&queue_sp->GetProcess()->GetRunLock())) { in FetchThreads()
113 if (stop_locker.TryLock(&queue_sp->GetProcess()->GetRunLock())) { in FetchItems()
145 ProcessSP process_sp = queue_sp->GetProcess(); in GetThreadAtIndex()
185 lldb::SBProcess GetProcess() { in GetProcess() function in lldb_private::QueueImpl
189 result.SetSP(queue_sp->GetProcess()); in GetProcess()
310 SBProcess SBQueue::GetProcess() { in GetProcess() function in SBQueue
313 return m_opaque_sp->GetProcess(); in GetProcess()
/openbsd/gnu/llvm/lldb/source/Plugins/Process/Linux/
H A DNativeThreadLinux.cpp102 NativeProcessLinux &process = GetProcess(); in GetName()
222 NativeProcessLinux &process = GetProcess(); in Resume()
234 NativeProcessLinux &process = GetProcess(); in Resume()
274 GetProcess().SupportHardwareSingleStepping() ? PTRACE_SINGLESTEP in SingleStep()
316 switch (GetProcess().GetArchitecture().GetMachine()) { in AnnotateSyncTagCheckFault()
349 Status status = GetProcess().ReadMemoryTags(allocation_tag_type, fault_addr, in AnnotateSyncTagCheckFault()
501 NativeProcessLinux &process = GetProcess(); in RequestStop()
539 NativeProcessLinux &NativeThreadLinux::GetProcess() { in GetProcess() function in NativeThreadLinux
543 const NativeProcessLinux &NativeThreadLinux::GetProcess() const { in GetProcess() function in NativeThreadLinux
552 GetProcess().GetSignalInfo(GetID(), siginfo_buf->getBufferStart()); in GetSiginfo()
H A DNativeThreadLinux.h56 NativeProcessLinux &GetProcess();
58 const NativeProcessLinux &GetProcess() const;
/openbsd/gnu/llvm/lldb/source/Plugins/Process/OpenBSD/
H A DNativeRegisterContextOpenBSD.cpp96 NativeProcessOpenBSD &NativeRegisterContextOpenBSD::GetProcess() { in GetProcess() function in NativeRegisterContextOpenBSD
97 return static_cast<NativeProcessOpenBSD &>(m_thread.GetProcess()); in GetProcess()
101 return GetProcess().GetID(); in GetProcessPid()
/openbsd/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/
H A DProcessDebugger.cpp70 return m_session_data->m_debugger->GetProcess().GetProcessId(); in GetDebuggedProcessId()
95 debugger_thread->GetProcess().GetNativeProcess().GetSystemHandle()); in DetachProcess()
237 debugger_thread->GetProcess().GetNativeProcess().GetSystemHandle()); in DestroyProcess()
251 caused_stop = ::DebugBreakProcess(m_session_data->m_debugger->GetProcess() in HaltProcess()
279 HostProcess process = m_session_data->m_debugger->GetProcess(); in ReadMemory()
308 HostProcess process = m_session_data->m_debugger->GetProcess(); in WriteMemory()
338 HostProcess process = m_session_data->m_debugger->GetProcess(); in AllocateMemory()
365 HostProcess process = m_session_data->m_debugger->GetProcess(); in DeallocateMemory()
389 HostProcess process = m_session_data->m_debugger->GetProcess(); in GetMemoryRegionInfo()
571 process = debugger->GetProcess(); in WaitForDebuggerConnection()
H A DProcessWindows.cpp214 m_session_data->m_debugger->GetProcess().GetProcessId(), in DoResume()
250 m_session_data->m_debugger->GetProcess().GetProcessId(), in DoResume()
370 m_session_data->m_debugger->GetProcess().GetProcessId()); in RefreshStateAfterStop()
389 m_session_data->m_debugger->GetProcess().GetProcessId(), pc, in RefreshStateAfterStop()
406 m_session_data->m_debugger->GetProcess().GetProcessId(), pc, id); in RefreshStateAfterStop()
458 m_session_data->m_debugger->GetProcess().GetProcessId(), pc, in RefreshStateAfterStop()
654 debugger->GetProcess().GetProcessId(), image_base); in OnDebuggerConnected()
658 const DWORD pid = debugger->GetProcess().GetProcessId(); in OnDebuggerConnected()
/openbsd/gnu/llvm/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()
/openbsd/gnu/llvm/lldb/bindings/interface/
H A DSBExecutionContext.i35 GetProcess () const;
46 …process = property(GetProcess, None, doc='''A read only property that returns the same result as G…
/openbsd/gnu/llvm/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 DAppleObjCRuntimeV2.cpp1566 Process *process = GetProcess(); in GetTaggedPointerObfuscator()
1597 Process *process = GetProcess(); in GetISAHashTablePointer()
1863 Process *process = m_runtime.GetProcess(); in UpdateISAToDescriptorMap()
2130 Process *process = m_runtime.GetProcess(); in UpdateISAToDescriptorMap()
2327 Process *process = GetProcess(); in GetSharedCacheReadOnlyAddress()
2382 Process *process = GetProcess(); in UpdateISAToDescriptorMapIfNeeded()
2455 Process *process = GetProcess(); in RealizedClassGenerationCountChanged()
2497 if (GetProcess() && !DoesProcessHaveSharedCache(*GetProcess())) { in WarnIfNoClassesCached()
2538 Target &target = GetProcess()->GetTarget(); in WarnIfNoExpandedSharedCache()
2630 Process *process(runtime.GetProcess()); in CreateInstance()
[all …]
H A DAppleObjCClassDescriptorV2.cpp379 lldb_private::Process *process = m_runtime.GetProcess(); in Describe()
464 lldb_private::Process *process = m_runtime.GetProcess(); in GetClassName()
483 lldb_private::Process *process = m_runtime.GetProcess(); in GetSuperclass()
498 lldb_private::Process *process = m_runtime.GetProcess(); in GetMetaclass()
515 lldb_private::Process *process = m_runtime.GetProcess(); in GetInstanceSize()
552 Process *process(runtime.GetProcess()); in fill()
/openbsd/gnu/llvm/lldb/examples/darwin/heap_find/
H A Dheap.py605 frame = lldb.debugger.GetSelectedTarget().GetProcess(
657 frame = lldb.debugger.GetSelectedTarget().GetProcess(
732 process = expr_sbvalue.GetProcess()
859 process = debugger.GetSelectedTarget().GetProcess()
888 process = debugger.GetSelectedTarget().GetProcess()
996 process = debugger.GetSelectedTarget().GetProcess()
1113 process = debugger.GetSelectedTarget().GetProcess()
1283 frame = target.GetProcess().GetSelectedThread().GetSelectedFrame()
1291 target.GetProcess(), result, options, arg_str_description, expr, False)
1330 process = debugger.GetSelectedTarget().GetProcess()
/openbsd/gnu/llvm/lldb/source/Plugins/Process/mach-core/
H A DThreadMachCore.cpp79 ProcessSP process_sp(GetProcess()); in CreateRegisterContextForFrame()
108 ProcessSP process_sp(GetProcess()); in CalculateStopInfo()
/openbsd/gnu/llvm/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()
/openbsd/gnu/llvm/lldb/examples/summaries/cocoa/
H A DCFString.py40 offset = valobj.GetTarget().GetProcess().GetAddressByteSize()
87 process = self.valobj.GetTarget().GetProcess()
334 self.pointer_size = self.valobj.GetTarget().GetProcess().GetAddressByteSize()
336 self.is_little = self.valobj.GetTarget().GetProcess(

1234567