Searched refs:GetProcess (Results 1 - 25 of 94) sorted by relevance

1234

/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeRegisterContextNetBSD.cpp34 NativeProcessNetBSD &NativeRegisterContextNetBSD::GetProcess() { function in class:NativeRegisterContextNetBSD
35 return static_cast<NativeProcessNetBSD &>(m_thread.GetProcess());
39 return GetProcess().GetID();
H A DNativeRegisterContextNetBSD.h41 virtual NativeProcessNetBSD &GetProcess();
/freebsd-13-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBExecutionContext.i32 GetProcess () const;
43 process = property(GetProcess, None, doc='''A read only property that returns the same result as GetProcess().''')
H A DSBQueue.i29 GetProcess ();
H A DSBCommandInterpreter.i46 process = ci.GetProcess()
127 GetProcess ();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DHistoryThread.cpp53 *this, 0, GetProcess()->GetAddressByteSize(), m_pcs[0]);
77 if (GetProcess()->HasAssignedIndexIDToThread(
79 return GetProcess()->AssignIndexIDToThread(
H A DHistoryUnwind.cpp45 &frame->GetThread()->GetProcess()->GetTarget());
49 frame->GetThread()->GetProcess()->GetAddressByteSize(), pc);
H A DThreadMemory.cpp78 ProcessSP process_sp(GetProcess());
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DThreadGDBRemote.cpp48 ProcessSP process_sp(GetProcess());
98 ProcessSP process_sp(GetProcess());
128 ProcessSP process_sp(GetProcess());
152 ProcessSP process_sp(GetProcess());
167 ProcessSP process_sp(GetProcess());
179 ProcessSP process_sp(GetProcess());
219 ProcessSP process_sp(GetProcess());
235 ProcessSP process_sp(GetProcess());
300 ProcessSP process_sp(GetProcess());
335 ProcessSP process_sp(GetProcess());
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/API/
H A DSBQueue.cpp99 if (stop_locker.TryLock(&queue_sp->GetProcess()->GetRunLock())) {
119 if (stop_locker.TryLock(&queue_sp->GetProcess()->GetRunLock())) {
151 ProcessSP process_sp = queue_sp->GetProcess();
191 lldb::SBProcess GetProcess() { function in class:lldb_private::QueueImpl
195 result.SetSP(queue_sp->GetProcess());
320 SBProcess SBQueue::GetProcess() { function in class:SBQueue
321 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBProcess, SBQueue, GetProcess);
323 return LLDB_RECORD_RESULT(m_opaque_sp->GetProcess());
354 LLDB_REGISTER_METHOD(lldb::SBProcess, SBQueue, GetProcess, ());
H A DSBExecutionContext.cpp97 SBProcess SBExecutionContext::GetProcess() const { function in class:SBExecutionContext
99 GetProcess);
154 LLDB_REGISTER_METHOD_CONST(lldb::SBProcess, SBExecutionContext, GetProcess,
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBExecutionContext.h46 SBProcess GetProcess() const;
H A DSBQueue.h37 lldb::SBProcess GetProcess();
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeThreadProtocol.h37 NativeProcessProtocol &GetProcess() { return m_process; } function in class:lldb_private::NativeThreadProtocol
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DStructuredDataPlugin.h46 lldb::ProcessSP GetProcess() const;
H A DQueue.h92 lldb::ProcessSP GetProcess() const { return m_process_wp.lock(); } function in class:lldb_private::Queue
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DStructuredDataPlugin.cpp41 ProcessSP StructuredDataPlugin::GetProcess() const { function in class:StructuredDataPlugin
H A DStopInfo.cpp32 m_stop_id(thread.GetProcess()->GetStopID()),
33 m_resume_id(thread.GetProcess()->GetResumeID()), m_value(value),
40 return thread_sp->GetProcess()->GetStopID() == m_stop_id;
47 m_stop_id = thread_sp->GetProcess()->GetStopID();
48 m_resume_id = thread_sp->GetProcess()->GetResumeID();
56 lldb::StateType ret_type = thread_sp->GetProcess()->GetPrivateState();
68 uint32_t curr_resume_id = thread_sp->GetProcess()->GetResumeID();
70 thread_sp->GetProcess()->GetLastUserExpressionResumeID();
108 thread_sp->GetProcess()->GetBreakpointSiteList().FindByID(m_value));
123 ProcessSP process_sp(thread.GetProcess());
[all...]
H A DUnwindLLDB.cpp28 ProcessSP process_sp(thread.GetProcess());
51 ProcessSP process_sp(m_thread.GetProcess());
74 ProcessSP process_sp(m_thread.GetProcess());
399 ProcessSP process_sp(m_thread.GetProcess());
445 ProcessSP process_sp(m_thread.GetProcess());
H A DThread.cpp309 if (GetProcess()->GetTarget().GetDebugger().GetUseExternalEditor() &&
330 (GetProcess()->GetWarningsOptimization() ||
331 GetProcess()->GetWarningsUnsupportedLanguage())) {
334 GetProcess()->PrintWarningOptimization(sc);
335 GetProcess()->PrintWarningUnsupportedLanguage(sc);
344 ProcessSP process_sp(GetProcess());
381 ProcessSP process_sp(GetProcess());
426 ProcessSP process_sp(GetProcess());
450 ProcessSP process_sp(GetProcess());
501 ProcessSP process_sp(GetProcess());
[all...]
H A DQueueItem.cpp48 ProcessSP process_sp = queue_sp->GetProcess();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DFreeBSDThread.cpp58 Target &target = GetProcess()->GetTarget();
82 ProcessSP base = GetProcess();
115 int pid = GetProcess()->GetID();
162 const ArchSpec &target_arch = GetProcess()->GetTarget().GetArchitecture();
282 ProcessSP process_sp(GetProcess());
448 GetProcess()->GetBreakpointSiteList().FindByAddress(pc));
463 GetProcess()->GetOperatingSystem() != nullptr)
497 Target &target = GetProcess()->GetTarget();
516 GetProcess()->GetBreakpointSiteList().FindByAddress(pc));
525 GetProcess()
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptExpressionOpts.cpp160 auto *process = GetProcess();
168 m_ir_passes = new RSIRPasses(GetProcess());
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Architecture/Arm/
H A DArchitectureArm.cpp103 const uint64_t opcode = thread.GetProcess()->ReadUnsignedIntegerFromMemory(pc, 4, UINT64_MAX, error);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleThreadPlanStepThroughObjCTrampoline.cpp171 ObjCLanguageRuntime::Get(*GetThread().GetProcess());
318 ProcessSP process_sp = GetThread().GetProcess();
397 = GetThread().GetProcess()->GetLanguageRuntime(eLanguageTypeObjC);

Completed in 305 milliseconds

1234