Home
last modified time | relevance | path

Searched refs:SBLaunchInfo (Results 1 – 25 of 28) sorted by relevance

12

/external/llvm-project/lldb/source/API/
DSBLaunchInfo.cpp38 SBLaunchInfo::SBLaunchInfo(const char **argv) in SBLaunchInfo() function in SBLaunchInfo
40 LLDB_RECORD_CONSTRUCTOR(SBLaunchInfo, (const char **), argv); in SBLaunchInfo()
47 SBLaunchInfo::SBLaunchInfo(const SBLaunchInfo &rhs) { in SBLaunchInfo() function in SBLaunchInfo
48 LLDB_RECORD_CONSTRUCTOR(SBLaunchInfo, (const lldb::SBLaunchInfo &), rhs); in SBLaunchInfo()
53 SBLaunchInfo &SBLaunchInfo::operator=(const SBLaunchInfo &rhs) { in operator =()
54 LLDB_RECORD_METHOD(SBLaunchInfo &, in operator =()
55 SBLaunchInfo, operator=,(const lldb::SBLaunchInfo &), rhs); in operator =()
61 SBLaunchInfo::~SBLaunchInfo() = default;
63 const lldb_private::ProcessLaunchInfo &SBLaunchInfo::ref() const { in ref()
67 void SBLaunchInfo::set_ref(const ProcessLaunchInfo &info) { in set_ref()
[all …]
DSBPlatform.cpp605 SBError SBPlatform::Launch(SBLaunchInfo &launch_info) { in Launch()
606 LLDB_RECORD_METHOD(lldb::SBError, SBPlatform, Launch, (lldb::SBLaunchInfo &), in Launch()
787 (lldb::SBLaunchInfo &)); in RegisterMethods()
DSBTarget.cpp294 SBLaunchInfo launch_info = GetLaunchInfo(); in LaunchSimple()
410 SBProcess SBTarget::Launch(SBLaunchInfo &sb_launch_info, SBError &error) { in Launch()
412 (lldb::SBLaunchInfo &, lldb::SBError &), sb_launch_info, in Launch()
2381 lldb::SBLaunchInfo SBTarget::GetLaunchInfo() const { in GetLaunchInfo()
2382 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBLaunchInfo, SBTarget, GetLaunchInfo); in GetLaunchInfo()
2384 lldb::SBLaunchInfo launch_info(nullptr); in GetLaunchInfo()
2391 void SBTarget::SetLaunchInfo(const lldb::SBLaunchInfo &launch_info) { in SetLaunchInfo()
2393 (const lldb::SBLaunchInfo &), launch_info); in SetLaunchInfo()
2451 (lldb::SBLaunchInfo &, lldb::SBError &)); in RegisterMethods()
2650 LLDB_REGISTER_METHOD_CONST(lldb::SBLaunchInfo, SBTarget, GetLaunchInfo, ()); in RegisterMethods()
[all …]
DCMakeLists.txt53 SBLaunchInfo.cpp
/external/llvm-project/lldb/include/lldb/API/
DSBLaunchInfo.h23 class LLDB_API SBLaunchInfo {
25 SBLaunchInfo(const char **argv);
27 ~SBLaunchInfo();
29 SBLaunchInfo(const SBLaunchInfo &rhs);
31 SBLaunchInfo &operator=(const SBLaunchInfo &rhs);
DSBPlatform.h21 class SBLaunchInfo; variable
148 SBError Launch(SBLaunchInfo &launch_info);
DSBEnvironment.h125 friend class SBLaunchInfo; variable
DSBTarget.h212 SBProcess Launch(SBLaunchInfo &launch_info, SBError &error);
831 lldb::SBLaunchInfo GetLaunchInfo() const;
833 void SetLaunchInfo(const lldb::SBLaunchInfo &launch_info);
DSBFileSpec.h67 friend class SBLaunchInfo; variable
DSBListener.h88 friend class SBLaunchInfo; variable
DSBDefines.h54 class LLDB_API SBLaunchInfo; variable
/external/llvm-project/lldb/bindings/interface/
DSBLaunchInfo.i11 class SBLaunchInfo
14 SBLaunchInfo (const char **argv);
DSBPlatform.i187 Launch (lldb::SBLaunchInfo &launch_info);
DSBTarget.i246 Launch (lldb::SBLaunchInfo &launch_info, lldb::SBError& error);
949 lldb::SBLaunchInfo
953 SetLaunchInfo (const lldb::SBLaunchInfo &launch_info);
/external/llvm-project/lldb/tools/lldb-vscode/
DVSCodeForward.h34 class SBLaunchInfo; variable
/external/llvm-project/lldb/test/API/python_api/sblaunchinfo/
DTestSBLaunchInfo.py24 info = lldb.SBLaunchInfo(None)
/external/llvm-project/lldb/test/API/functionalities/tty/
DTestTerminal.py40 launch_info = lldb.SBLaunchInfo(["-lAF", "/tmp/"])
/external/llvm-project/lldb/test/API/functionalities/breakpoint/address_breakpoints/
DTestAddressBreakpoints.py56 launch_info = lldb.SBLaunchInfo(None)
/external/llvm-project/lldb/test/API/commands/expression/weak_symbols/
DTestWeakSymbols.py49 launch_info = lldb.SBLaunchInfo(None)
/external/llvm-project/debuginfo-tests/llgdb-tests/
Dllgdb.py94 launchinfo = lldb.SBLaunchInfo([])
/external/llvm-project/lldb/test/API/api/multiple-debuggers/
Dmulti-process-driver.cpp121 SBLaunchInfo launch_info (NULL); in do_one_debugger()
/external/llvm-project/lldb/bindings/
Dheaders.swig39 #include "lldb/API/SBLaunchInfo.h"
Dinterfaces.swig46 %include "./interface/SBLaunchInfo.i"
/external/llvm-project/lldb/test/API/lang/objc/exceptions/
DTestObjCExceptions.py24 launch_info = lldb.SBLaunchInfo(["a.out", "0"])
/external/llvm-project/lldb/examples/python/
Dprocess_events.py237 launch_info = lldb.SBLaunchInfo(args)

12