| /llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ThreadGDBRemote.cpp | 56 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 …]
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| H A D | StopInfo.cpp | 33 m_stop_id(thread.GetProcess()->GetStopID()), in StopInfo() 34 m_resume_id(thread.GetProcess()->GetResumeID()), m_value(value), in StopInfo() 41 return thread_sp->GetProcess()->GetStopID() == m_stop_id; in IsValid() 48 m_stop_id = thread_sp->GetProcess()->GetStopID(); in MakeStopInfoValid() 49 m_resume_id = thread_sp->GetProcess()->GetResumeID(); in MakeStopInfoValid() 71 thread_sp->GetProcess()->GetLastUserExpressionResumeID(); in HasTargetRunSinceMe() 135 ProcessSP process_sp(thread.GetProcess()); in IsValidForOperatingSystemThread() 1147 return thread_sp->GetProcess()->GetStopOnExec(); in ShouldStop() 1163 thread_sp->GetProcess()->DidExec(); in PerformAction() 1193 thread_sp->GetProcess()->DidFork(m_child_pid, m_child_tid); in PerformAction() [all …]
|
| H A D | Thread.cpp | 339 ProcessSP process_sp(GetProcess()); in GetStopInfo() 376 ProcessSP process_sp(GetProcess()); in GetPrivateStopInfo() 421 ProcessSP process_sp(GetProcess()); in StopInfoIsUpToDate() 445 ProcessSP process_sp(GetProcess()); in SetStopInfo() 494 ProcessSP process_sp(GetProcess()); in CheckpointThreadState() 777 GetProcess()->DumpThreadPlansForTID( in ShouldStop() 946 GetProcess()->DumpThreadPlansForTID( in ShouldStop() 1385 ProcessSP process_sp(GetProcess()); in CalculateTarget() 1642 Process *process = GetProcess().get(); in SafeToCallFunctions() 1893 Process *process = GetProcess().get(); in StepIn() [all …]
|
| H A D | UnwindLLDB.cpp | 29 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()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/FreeBSD/ |
| H A D | NativeRegisterContextFreeBSD.cpp | 23 NativeProcessFreeBSD &NativeRegisterContextFreeBSD::GetProcess() { in GetProcess() function in NativeRegisterContextFreeBSD 24 return static_cast<NativeProcessFreeBSD &>(m_thread.GetProcess()); in GetProcess() 28 return GetProcess().GetID(); in GetProcessPid()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/NetBSD/ |
| H A D | NativeRegisterContextNetBSD.cpp | 28 NativeProcessNetBSD &NativeRegisterContextNetBSD::GetProcess() { in GetProcess() function in NativeRegisterContextNetBSD 29 return static_cast<NativeProcessNetBSD &>(m_thread.GetProcess()); in GetProcess() 33 return GetProcess().GetID(); in GetProcessPid()
|
| /llvm-project-15.0.7/lldb/test/API/commands/process/attach/ |
| H A D | TestProcessAttach.py | 41 process = target.GetProcess() 57 process = target.GetProcess() 84 process = target.GetProcess() 99 process = target.GetProcess() 128 self.dbg.GetSelectedTarget().GetProcess().Destroy()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/gdb_remote_client/ |
| H A D | TestProcessConnect.py | 22 self.dbg.GetSelectedTarget().GetProcess().Kill() 34 self.dbg.GetSelectedTarget().GetProcess().Kill() 48 self.dbg.GetSelectedTarget().GetProcess().Kill() 63 self.dbg.GetSelectedTarget().GetProcess().Kill()
|
| H A D | TestPty.py | 67 self.dbg.GetSelectedTarget().GetProcess().Kill() 93 self.dbg.GetSelectedTarget().GetProcess().Kill() 119 self.dbg.GetSelectedTarget().GetProcess().Kill() 139 self.dbg.GetSelectedTarget().GetProcess().Kill()
|
| /llvm-project-15.0.7/lldb/test/API/commands/frame/recognizer/ |
| H A D | recognizer.py | 10 … val1 = frame.GetThread().GetProcess().GetTarget().CreateValueFromExpression("a", "%d" % arg1) 11 … val2 = frame.GetThread().GetProcess().GetTarget().CreateValueFromExpression("b", "%d" % arg2) 15 …val1 = frame.GetThread().GetProcess().GetTarget().CreateValueFromExpression("a", "(int *)%d" % arg…
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBQueue.cpp | 93 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()
|
| /llvm-project-15.0.7/lldb/test/API/commands/expression/formatters/ |
| H A D | foosynth.py | 28 self.valobj.GetTarget().GetProcess().GetAddressByteSize() == 8) 29 self.is_little = (self.valobj.GetTarget().GetProcess( 31 self.pointer_size = self.valobj.GetTarget().GetProcess().GetAddressByteSize()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/Linux/ |
| H A D | NativeThreadLinux.cpp | 102 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()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/ |
| H A D | ProcessDebugger.cpp | 70 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()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/Utility/ |
| H A D | HistoryThread.cpp | 54 *this, 0, GetProcess()->GetAddressByteSize(), m_pcs[0]); in GetRegisterContext() 78 if (GetProcess()->HasAssignedIndexIDToThread( in GetExtendedBacktraceOriginatingIndexID() 80 return GetProcess()->AssignIndexIDToThread( in GetExtendedBacktraceOriginatingIndexID()
|
| H A D | HistoryUnwind.cpp | 45 &frame->GetThread()->GetProcess()->GetTarget()); in DoCreateRegisterContextForFrame() 49 frame->GetThread()->GetProcess()->GetAddressByteSize(), pc); in DoCreateRegisterContextForFrame()
|
| /llvm-project-15.0.7/lldb/test/API/python_api/formatters/ |
| H A D | TestFormattersSBAPI.py | 173 foo_var = self.dbg.GetSelectedTarget().GetProcess( 191 foo_var = self.dbg.GetSelectedTarget().GetProcess( 206 foo_var = self.dbg.GetSelectedTarget().GetProcess( 237 foo_var = self.dbg.GetSelectedTarget().GetProcess( 397 frame = self.dbg.GetSelectedTarget().GetProcess( 469 frame = self.dbg.GetSelectedTarget().GetProcess( 479 frame = self.dbg.GetSelectedTarget().GetProcess( 489 frame = self.dbg.GetSelectedTarget().GetProcess(
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/thread/state/ |
| H A D | TestThreadStates.py | 83 process = target.GetProcess() 125 process = target.GetProcess() 167 process = target.GetProcess() 207 process = target.GetProcess() 253 process = target.GetProcess()
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBExecutionContext.i | 35 GetProcess () const; 46 …process = property(GetProcess, None, doc='''A read only property that returns the same result as G…
|
| /llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleThreadPlanStepThroughObjCTrampoline.cpp | 144 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 D | AppleObjCRuntimeV2.cpp | 1566 Process *process = GetProcess(); in GetTaggedPointerObfuscator() 1597 Process *process = GetProcess(); in GetISAHashTablePointer() 1863 Process *process = m_runtime.GetProcess(); in UpdateISAToDescriptorMap() 2127 Process *process = m_runtime.GetProcess(); in UpdateISAToDescriptorMap() 2321 Process *process = GetProcess(); in GetSharedCacheReadOnlyAddress() 2376 Process *process = GetProcess(); in UpdateISAToDescriptorMapIfNeeded() 2444 Process *process = GetProcess(); in RealizedClassGenerationCountChanged() 2486 if (GetProcess() && !DoesProcessHaveSharedCache(*GetProcess())) { in WarnIfNoClassesCached() 2521 Target &target = GetProcess()->GetTarget(); in WarnIfNoExpandedSharedCache() 2613 Process *process(runtime.GetProcess()); in CreateInstance() [all …]
|
| /llvm-project-15.0.7/lldb/test/API/lang/c/register_variables/ |
| H A D | TestRegisterVariables.py | 54 frame = self.dbg.GetSelectedTarget().GetProcess( 80 frame = self.dbg.GetSelectedTarget().GetProcess( 106 frame = self.dbg.GetSelectedTarget().GetProcess(
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/inferior-assert/ |
| H A D | TestInferiorAssert.py | 107 process = target.GetProcess() 195 process = target.GetProcess() 265 process = target.GetProcess() 303 process = target.GetProcess()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/inferior-changed/ |
| H A D | TestInferiorChanged.py | 47 len(lldbutil.get_crashed_threads(self, self.dbg.GetSelectedTarget().GetProcess())), 61 len(lldbutil.get_crashed_threads(self, self.dbg.GetSelectedTarget().GetProcess())),
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/synthupdate/ |
| H A D | TestSyntheticFilterRecompute.py | 48 id_x = self.dbg.GetSelectedTarget().GetProcess( 63 id_x = self.dbg.GetSelectedTarget().GetProcess(
|