diff options
| author | Bill Wendling <isanbard@gmail.com> | 2012-04-18 21:39:23 +0000 |
|---|---|---|
| committer | Bill Wendling <isanbard@gmail.com> | 2012-04-18 21:39:23 +0000 |
| commit | 392e4fbdd9b152efff4c051286f6b2c21270c902 (patch) | |
| tree | 4ac339be2c4c7c596f068b59d5e512b157c7b433 /lldb/scripts/Python/interface/SBBreakpointLocation.i | |
| parent | eb1c2bdc1f55fbc5d1e7bb86e9f0e038b0f5adb7 (diff) | |
Creating release_31 branchllvmorg-3.1.0-rc1
llvm-svn: 155059
llvm-svn: 155053
llvm-svn: 155051
Diffstat (limited to 'lldb/scripts/Python/interface/SBBreakpointLocation.i')
| -rw-r--r-- | lldb/scripts/Python/interface/SBBreakpointLocation.i | 104 |
1 files changed, 0 insertions, 104 deletions
diff --git a/lldb/scripts/Python/interface/SBBreakpointLocation.i b/lldb/scripts/Python/interface/SBBreakpointLocation.i deleted file mode 100644 index 093a0e6d380d..000000000000 --- a/lldb/scripts/Python/interface/SBBreakpointLocation.i +++ /dev/null @@ -1,104 +0,0 @@ -//===-- SWIG Interface for SBBreakpointLocation -----------------*- C++ -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -namespace lldb { - -%feature("docstring", -"Represents one unique instance (by address) of a logical breakpoint. - -A breakpoint location is defined by the breakpoint that produces it, -and the address that resulted in this particular instantiation. -Each breakpoint location has its settable options. - -SBBreakpoint contains SBBreakpointLocation(s). See docstring of SBBreakpoint -for retrieval of an SBBreakpointLocation from an SBBreakpoint." -) SBBreakpointLocation; -class SBBreakpointLocation -{ -public: - - SBBreakpointLocation (); - - SBBreakpointLocation (const lldb::SBBreakpointLocation &rhs); - - ~SBBreakpointLocation (); - - bool - IsValid() const; - - lldb::SBAddress - GetAddress(); - - lldb::addr_t - GetLoadAddress (); - - void - SetEnabled(bool enabled); - - bool - IsEnabled (); - - uint32_t - GetIgnoreCount (); - - void - SetIgnoreCount (uint32_t n); - - %feature("docstring", " - //-------------------------------------------------------------------------- - /// The breakpoint location stops only if the condition expression evaluates - /// to true. - //-------------------------------------------------------------------------- - ") SetCondition; - void - SetCondition (const char *condition); - - %feature("docstring", " - //------------------------------------------------------------------ - /// Get the condition expression for the breakpoint location. - //------------------------------------------------------------------ - ") GetCondition; - const char * - GetCondition (); - - void - SetThreadID (lldb::tid_t sb_thread_id); - - lldb::tid_t - GetThreadID (); - - void - SetThreadIndex (uint32_t index); - - uint32_t - GetThreadIndex() const; - - void - SetThreadName (const char *thread_name); - - const char * - GetThreadName () const; - - void - SetQueueName (const char *queue_name); - - const char * - GetQueueName () const; - - bool - IsResolved (); - - bool - GetDescription (lldb::SBStream &description, DescriptionLevel level); - - SBBreakpoint - GetBreakpoint (); -}; - -} // namespace lldb |
