diff options
Diffstat (limited to 'scripts/interface/SBDebugger.i')
-rw-r--r-- | scripts/interface/SBDebugger.i | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/scripts/interface/SBDebugger.i b/scripts/interface/SBDebugger.i index db774d350e9c5..9f746d36348cb 100644 --- a/scripts/interface/SBDebugger.i +++ b/scripts/interface/SBDebugger.i @@ -214,6 +214,11 @@ public: CreateTarget (const char *filename); %feature("docstring", + "The dummy target holds breakpoints and breakpoint names that will prime newly created targets." + ) GetDummyTarget; + lldb::SBTarget GetDummyTarget(); + + %feature("docstring", "Return true if target is deleted from the target list of the debugger." ) DeleteTarget; bool @@ -247,6 +252,34 @@ public: void SetSelectedPlatform(lldb::SBPlatform &platform); + %feature("docstring", + "Get the number of currently active platforms." + ) GetNumPlatforms; + uint32_t + GetNumPlatforms (); + + %feature("docstring", + "Get one of the currently active platforms." + ) GetPlatformAtIndex; + lldb::SBPlatform + GetPlatformAtIndex (uint32_t idx); + + %feature("docstring", + "Get the number of available platforms." + ) GetNumAvailablePlatforms; + uint32_t + GetNumAvailablePlatforms (); + + %feature("docstring", " + Get the name and description of one of the available platforms. + + @param idx Zero-based index of the platform for which info should be + retrieved, must be less than the value returned by + GetNumAvailablePlatforms(). + ") GetAvailablePlatformInfoAtIndex; + lldb::SBStructuredData + GetAvailablePlatformInfoAtIndex (uint32_t idx); + lldb::SBSourceManager GetSourceManager (); |