Home
last modified time | relevance | path

Searched refs:ExecutionContextRef (Results 1 – 11 of 11) sorted by relevance

/trueos/contrib/llvm/tools/lldb/include/lldb/Target/
HDExecutionContext.h75 class ExecutionContextRef
81 ExecutionContextRef();
86 ExecutionContextRef (const ExecutionContextRef &rhs);
95 ExecutionContextRef (const ExecutionContext *exe_ctx_ptr);
102 ExecutionContextRef (const ExecutionContext &exe_ctx);
109 ExecutionContextRef &
110 operator =(const ExecutionContextRef &rhs);
117 ExecutionContextRef &
126 ExecutionContextRef (Target *target, bool adopt_selected);
140 ExecutionContextRef (ExecutionContextScope *exe_scope);
[all …]
/trueos/contrib/llvm/tools/lldb/source/Target/
HDExecutionContext.cpp149 ExecutionContext::ExecutionContext (const ExecutionContextRef &exe_ctx_ref) : in ExecutionContext()
157 ExecutionContext::ExecutionContext (const ExecutionContextRef *exe_ctx_ref_ptr, bool thread_and_fra… in ExecutionContext()
175 ExecutionContext::ExecutionContext (const ExecutionContextRef *exe_ctx_ref_ptr, Mutex::Locker &lock… in ExecutionContext()
194 ExecutionContext::ExecutionContext (const ExecutionContextRef &exe_ctx_ref, Mutex::Locker &locker) : in ExecutionContext()
534 ExecutionContextRef::ExecutionContextRef() : in ExecutionContextRef() function in ExecutionContextRef
543 ExecutionContextRef::ExecutionContextRef (const ExecutionContext *exe_ctx) : in ExecutionContextRef() function in ExecutionContextRef
554 ExecutionContextRef::ExecutionContextRef (const ExecutionContext &exe_ctx) : in ExecutionContextRef() function in ExecutionContextRef
565 ExecutionContextRef::ExecutionContextRef (Target *target, bool adopt_selected) : in ExecutionContextRef() function in ExecutionContextRef
578 ExecutionContextRef::ExecutionContextRef (const ExecutionContextRef &rhs) : in ExecutionContextRef() function in ExecutionContextRef
587 ExecutionContextRef &
[all …]
/trueos/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
HDCXXFormatterFunctions.h223 ExecutionContextRef m_exe_ctx_ref;
254 ExecutionContextRef m_exe_ctx_ref;
330 ExecutionContextRef m_exe_ctx_ref;
388 ExecutionContextRef m_exe_ctx_ref;
464 ExecutionContextRef m_exe_ctx_ref;
544 ExecutionContextRef m_exe_ctx_ref;
601 ExecutionContextRef m_exe_ctx_ref;
635 ExecutionContextRef m_exe_ctx_ref;
666 ExecutionContextRef m_exe_ctx_ref;
727 ExecutionContextRef m_exe_ctx_ref;
/trueos/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
HDStoppointCallbackContext.h51 ExecutionContextRef exe_ctx_ref; // This tells us where we have stopped, what thread.
/trueos/contrib/llvm/tools/lldb/include/lldb/Core/
HDValueObject.h232 const ExecutionContextRef &
323 ExecutionContextRef m_exe_ctx_ref;
340 const ExecutionContextRef &
/trueos/contrib/llvm/tools/lldb/include/lldb/
HDlldb-forward.h92 class ExecutionContextRef; variable
301 typedef std::shared_ptr<lldb_private::ExecutionContextRef> ExecutionContextRefSP;
/trueos/contrib/llvm/tools/lldb/include/lldb/Interpreter/
HDCommandInterpreter.h502ExecutionContextRef m_exe_ctx_ref; // The current execution context to use when handling …
/trueos/contrib/llvm/tools/lldb/source/API/
HDSBThread.cpp57 m_opaque_sp (new ExecutionContextRef()) in SBThread()
62 m_opaque_sp (new ExecutionContextRef(lldb_object_sp)) in SBThread()
67 m_opaque_sp (new ExecutionContextRef(*rhs.m_opaque_sp)) in SBThread()
HDSBFrame.cpp53 m_opaque_sp (new ExecutionContextRef()) in SBFrame()
58 m_opaque_sp (new ExecutionContextRef (lldb_object_sp)) in SBFrame()
73 m_opaque_sp (new ExecutionContextRef (*rhs.m_opaque_sp)) in SBFrame()
HDSBTarget.cpp1864 … ExecutionContext exe_ctx (ExecutionContextRef(ExecutionContext(m_opaque_sp.get(),false))); in CreateValueFromAddress()
/trueos/contrib/llvm/tools/lldb/source/Core/
HDValueObjectVariable.cpp262 const ExecutionContextRef &exe_ctx_ref = GetExecutionContextRef(); in IsInScope()