| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBPlatform.cpp | 290 SBPlatform::SBPlatform() { LLDB_INSTRUMENT_VA(this); } in SBPlatform() function in SBPlatform 292 SBPlatform::SBPlatform(const char *platform_name) { in SBPlatform() function in SBPlatform 298 SBPlatform::SBPlatform(const SBPlatform &rhs) { in SBPlatform() function in SBPlatform 304 SBPlatform &SBPlatform::operator=(const SBPlatform &rhs) { in operator =() 311 SBPlatform::~SBPlatform() = default; 313 SBPlatform SBPlatform::GetHostPlatform() { in GetHostPlatform() 316 SBPlatform host_platform; in GetHostPlatform() 321 bool SBPlatform::IsValid() const { in IsValid() 325 SBPlatform::operator bool() const { in operator bool() 331 void SBPlatform::Clear() { in Clear() [all …]
|
| H A D | SBDebugger.cpp | 1052 SBPlatform SBDebugger::GetSelectedPlatform() { in GetSelectedPlatform() 1057 SBPlatform sb_platform; in GetSelectedPlatform() 1069 void SBDebugger::SetSelectedPlatform(SBPlatform &sb_platform) { in SetSelectedPlatform() 1095 SBPlatform SBDebugger::GetPlatformAtIndex(uint32_t idx) { in GetPlatformAtIndex() 1098 SBPlatform sb_platform; in GetPlatformAtIndex() 1481 if (SBPlatform platform = GetSelectedPlatform()) { in SetCurrentPlatformSDKRoot()
|
| H A D | CMakeLists.txt | 56 SBPlatform.cpp
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBPlatform.h | 88 friend class SBPlatform; 93 class LLDB_API SBPlatform { 95 SBPlatform(); 97 SBPlatform(const char *platform_name); 99 SBPlatform(const SBPlatform &rhs); 101 SBPlatform &operator=(const SBPlatform &rhs); 103 ~SBPlatform(); 105 static SBPlatform GetHostPlatform();
|
| H A D | SBLaunchInfo.h | 20 class SBPlatform; variable 183 friend class SBPlatform;
|
| H A D | SBDebugger.h | 210 lldb::SBPlatform GetSelectedPlatform(); 212 void SetSelectedPlatform(lldb::SBPlatform &platform); 218 lldb::SBPlatform GetPlatformAtIndex(uint32_t idx);
|
| H A D | SBEnvironment.h | 123 friend class SBPlatform;
|
| H A D | SBUnixSignals.h | 55 friend class SBPlatform; variable
|
| H A D | SBTarget.h | 27 class SBPlatform; variable 95 lldb::SBPlatform GetPlatform(); 875 friend class SBPlatform; variable
|
| H A D | SBFileSpec.h | 71 friend class SBPlatform; variable
|
| H A D | SBError.h | 68 friend class SBPlatform; variable
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBPlatform.i | 120 ) SBPlatform; 121 class SBPlatform 125 SBPlatform (); 127 SBPlatform (const char *); 129 ~SBPlatform(); 131 static SBPlatform GetHostPlatform();
|
| H A D | SBDebugger.i | 330 lldb::SBPlatform 334 SetSelectedPlatform(lldb::SBPlatform &platform); 345 lldb::SBPlatform
|
| /llvm-project-15.0.7/lldb/test/API/python_api/sbplatform/ |
| H A D | TestSBPlatform.py | 12 plat = lldb.SBPlatform.GetHostPlatform() 23 plat = lldb.SBPlatform("remote-linux") # arbitrary choice 33 floating_platform = lldb.SBPlatform("remote-netbsd") 42 floating_platform = lldb.SBPlatform("remote-netbsd")
|
| /llvm-project-15.0.7/lldb/test/API/qemu/ |
| H A D | TestQemuAPI.py | 13 qemu = lldb.SBPlatform("qemu-user") 14 host = lldb.SBPlatform.GetHostPlatform()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/gdb_remote_client/ |
| H A D | TestPlatformClient.py | 86 plat = lldb.SBPlatform("remote-linux") 100 plat = lldb.SBPlatform("remote-linux")
|
| H A D | TestPlatformKill.py | 40 host_platform = lldb.SBPlatform("host")
|
| /llvm-project-15.0.7/lldb/test/API/python_api/debugger/ |
| H A D | TestDebuggerAPI.py | 113 self.dbg.SetSelectedPlatform(lldb.SBPlatform("remote-windows")) 131 fbsd = lldb.SBPlatform("remote-freebsd")
|
| /llvm-project-15.0.7/lldb/test/API/commands/platform/connect/ |
| H A D | TestPlatformConnect.py | 38 new_platform = lldb.SBPlatform("remote-" + self.getPlatform())
|
| /llvm-project-15.0.7/lldb/test/API/commands/target/auto-install-main-executable/ |
| H A D | TestAutoInstallMainExecutable.py | 40 new_platform = lldb.SBPlatform("remote-" + self.getPlatform())
|
| /llvm-project-15.0.7/llvm/utils/gn/secondary/lldb/source/API/ |
| H A D | BUILD.gn | 78 "SBPlatform.cpp",
|
| /llvm-project-15.0.7/lldb/bindings/ |
| H A D | interfaces.swig | 50 %include "./interface/SBPlatform.i"
|
| H A D | headers.swig | 46 #include "lldb/API/SBPlatform.h"
|
| /llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/ |
| H A D | dotest.py | 807 if lldb.SBPlatform.GetHostPlatform().GetOSMajorVersion() < 13: 900 lldb.selected_platform = lldb.SBPlatform.GetHostPlatform() 908 lldb.remote_platform = lldb.SBPlatform(
|
| /llvm-project-15.0.7/lldb/docs/ |
| H A D | .htaccess | 63 Redirect 301 /python_reference/lldb.SBPlatform-class.html https://lldb.llvm.org/python_api/lldb.SBP…
|