Home
last modified time | relevance | path

Searched refs:SBExecutionContext (Results 1 – 19 of 19) sorted by relevance

/external/llvm-project/lldb/source/API/
DSBExecutionContext.cpp22 SBExecutionContext::SBExecutionContext() : m_exe_ctx_sp() { in SBExecutionContext() function in SBExecutionContext
23 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBExecutionContext); in SBExecutionContext()
26 SBExecutionContext::SBExecutionContext(const lldb::SBExecutionContext &rhs) in SBExecutionContext() function in SBExecutionContext
28 LLDB_RECORD_CONSTRUCTOR(SBExecutionContext, in SBExecutionContext()
29 (const lldb::SBExecutionContext &), rhs); in SBExecutionContext()
32 SBExecutionContext::SBExecutionContext( in SBExecutionContext() function in SBExecutionContext
35 LLDB_RECORD_CONSTRUCTOR(SBExecutionContext, (lldb::ExecutionContextRefSP), in SBExecutionContext()
39 SBExecutionContext::SBExecutionContext(const lldb::SBTarget &target) in SBExecutionContext() function in SBExecutionContext
41 LLDB_RECORD_CONSTRUCTOR(SBExecutionContext, (const lldb::SBTarget &), target); in SBExecutionContext()
46 SBExecutionContext::SBExecutionContext(const lldb::SBProcess &process) in SBExecutionContext() function in SBExecutionContext
[all …]
DSBCommandInterpreter.cpp162 SBExecutionContext sb_exe_ctx; in HandleCommand()
167 const char *command_line, SBExecutionContext &override_context, in HandleCommand()
170 (const char *, lldb::SBExecutionContext &, in HandleCommand()
199 lldb::SBFileSpec &file, lldb::SBExecutionContext &override_context, in HandleCommandsFromFile()
203 (lldb::SBFileSpec &, lldb::SBExecutionContext &, in HandleCommandsFromFile()
790 (const char *, lldb::SBExecutionContext &, in RegisterMethods()
793 (lldb::SBFileSpec &, lldb::SBExecutionContext &, in RegisterMethods()
DSBReproducer.cpp81 RegisterMethods<SBExecutionContext>(R); in SBRegistry()
DCMakeLists.txt42 SBExecutionContext.cpp
/external/llvm-project/lldb/include/lldb/API/
DSBExecutionContext.h20 class LLDB_API SBExecutionContext {
24 SBExecutionContext();
26 SBExecutionContext(const lldb::SBExecutionContext &rhs);
28 SBExecutionContext(lldb::ExecutionContextRefSP exe_ctx_ref_sp);
30 SBExecutionContext(const lldb::SBTarget &target);
32 SBExecutionContext(const lldb::SBProcess &process);
34 SBExecutionContext(lldb::SBThread thread); // can't be a const& because
38 SBExecutionContext(const lldb::SBFrame &frame);
40 ~SBExecutionContext();
42 const SBExecutionContext &operator=(const lldb::SBExecutionContext &rhs);
DSBCommandInterpreter.h160 SBExecutionContext &exe_ctx,
165 lldb::SBExecutionContext &override_context,
DSBFrame.h191 friend class SBExecutionContext; variable
DSBDefines.h43 class LLDB_API SBExecutionContext; variable
DSBThread.h212 friend class SBExecutionContext; variable
DSBProcess.h404 friend class SBExecutionContext; variable
DSBTarget.h841 friend class SBExecutionContext; variable
/external/llvm-project/lldb/bindings/interface/
DSBExecutionContext.i11 class SBExecutionContext
14 SBExecutionContext();
16 SBExecutionContext (const lldb::SBExecutionContext &rhs);
18 SBExecutionContext (const lldb::SBTarget &target);
20 SBExecutionContext (const lldb::SBProcess &process);
22SBExecutionContext (lldb::SBThread thread); // can't be a const& because SBThread::get() isn't its…
24 SBExecutionContext (const lldb::SBFrame &frame);
26 ~SBExecutionContext();
DSBCommandInterpreter.i142 …HandleCommand (const char *command_line, SBExecutionContext &exe_ctx, SBCommandReturnObject &resul…
146 lldb::SBExecutionContext &override_context,
/external/llvm-project/lldb/test/API/commands/command/script/
Dcallables.py14 not isinstance(context, lldb.SBExecutionContext))):
/external/llvm-project/lldb/bindings/python/
Dpython-swigsafecast.swig130 SBTypeToSWIGWrapper (lldb::SBExecutionContext* ctx_sb)
Dpython-wrapper.swig566 lldb::SBExecutionContext sb_exc_ctx(exc_ctx_sp);
817 lldb::SBExecutionContext exe_ctx_sb(exe_ctx_ref_sp);
857 lldb::SBExecutionContext exe_ctx_sb(exe_ctx_ref_sp);
/external/llvm-project/lldb/bindings/
Dheaders.swig28 #include "lldb/API/SBExecutionContext.h"
Dinterfaces.swig35 %include "./interface/SBExecutionContext.i"
/external/llvm-project/lldb/docs/use/
Dpython-reference.rst497 Since lldb 3.5.2, LLDB Python commands can also take an SBExecutionContext as an
519 | **exe_ctx** | **lldb.SBExecutionContext** | An execution context object carrying around …
847 | **handle_stop** | **exe_ctx: lldb.SBExecutionContext** | This is the called when the target s…