|
|
|
__init__(self,
*args)
__init__(lldb::SBBreakpoint self) -> SBBreakpoint
__init__(lldb::SBBreakpoint self, SBBreakpoint rhs) ->
SBBreakpoint |
source code
|
|
|
GetID(self)
GetID(SBBreakpoint self) -> lldb::break_id_t |
source code
|
|
|
IsValid(self)
IsValid(SBBreakpoint self) -> bool |
source code
|
|
|
|
|
|
|
ClearAllBreakpointSites(self)
ClearAllBreakpointSites(SBBreakpoint self) |
source code
|
|
|
FindLocationByAddress(self,
*args)
FindLocationByAddress(SBBreakpoint self, lldb::addr_t vm_addr) ->
SBBreakpointLocation |
source code
|
|
|
FindLocationIDByAddress(self,
*args)
FindLocationIDByAddress(SBBreakpoint self, lldb::addr_t vm_addr)
-> lldb::break_id_t |
source code
|
|
|
FindLocationByID(self,
*args)
FindLocationByID(SBBreakpoint self, lldb::break_id_t bp_loc_id) ->
SBBreakpointLocation |
source code
|
|
|
GetLocationAtIndex(self,
*args)
GetLocationAtIndex(SBBreakpoint self, uint32_t index) ->
SBBreakpointLocation |
source code
|
|
|
SetEnabled(self,
*args)
SetEnabled(SBBreakpoint self, bool enable) |
source code
|
|
|
IsEnabled(self)
IsEnabled(SBBreakpoint self) -> bool |
source code
|
|
|
SetOneShot(self,
*args)
SetOneShot(SBBreakpoint self, bool one_shot) |
source code
|
|
|
IsOneShot(self)
IsOneShot(SBBreakpoint self) -> bool |
source code
|
|
|
IsInternal(self)
IsInternal(SBBreakpoint self) -> bool |
source code
|
|
|
GetHitCount(self)
GetHitCount(SBBreakpoint self) -> uint32_t |
source code
|
|
|
SetIgnoreCount(self,
*args)
SetIgnoreCount(SBBreakpoint self, uint32_t count) |
source code
|
|
|
GetIgnoreCount(self)
GetIgnoreCount(SBBreakpoint self) -> uint32_t |
source code
|
|
|
|
|
|
|
SetAutoContinue(self,
*args)
SetAutoContinue(SBBreakpoint self, bool auto_continue) |
source code
|
|
|
GetAutoContinue(self)
GetAutoContinue(SBBreakpoint self) -> bool |
source code
|
|
|
SetThreadID(self,
*args)
SetThreadID(SBBreakpoint self, lldb::tid_t sb_thread_id) |
source code
|
|
|
GetThreadID(self)
GetThreadID(SBBreakpoint self) -> lldb::tid_t |
source code
|
|
|
SetThreadIndex(self,
*args)
SetThreadIndex(SBBreakpoint self, uint32_t index) |
source code
|
|
|
GetThreadIndex(self)
GetThreadIndex(SBBreakpoint self) -> uint32_t |
source code
|
|
|
SetThreadName(self,
*args)
SetThreadName(SBBreakpoint self, char const * thread_name) |
source code
|
|
|
GetThreadName(self)
GetThreadName(SBBreakpoint self) -> char const * |
source code
|
|
|
SetQueueName(self,
*args)
SetQueueName(SBBreakpoint self, char const * queue_name) |
source code
|
|
|
GetQueueName(self)
GetQueueName(SBBreakpoint self) -> char const * |
source code
|
|
|
|
|
|
|
SetCommandLineCommands(self,
*args)
SetCommandLineCommands(SBBreakpoint self, SBStringList commands) |
source code
|
|
|
GetCommandLineCommands(self,
*args)
GetCommandLineCommands(SBBreakpoint self, SBStringList commands)
-> bool |
source code
|
|
|
AddName(self,
*args)
AddName(SBBreakpoint self, char const * new_name) -> bool |
source code
|
|
|
RemoveName(self,
*args)
RemoveName(SBBreakpoint self, char const * name_to_remove) |
source code
|
|
|
MatchesName(self,
*args)
MatchesName(SBBreakpoint self, char const * name) -> bool |
source code
|
|
|
GetNames(self,
*args)
GetNames(SBBreakpoint self, SBStringList names) |
source code
|
|
|
GetNumResolvedLocations(self)
GetNumResolvedLocations(SBBreakpoint self) -> size_t |
source code
|
|
|
GetNumLocations(self)
GetNumLocations(SBBreakpoint self) -> size_t |
source code
|
|
|
GetDescription(self,
*args)
GetDescription(SBBreakpoint self, SBStream description) -> bool
GetDescription(SBBreakpoint self, SBStream description, bool
include_locations) -> bool |
source code
|
|
|
AddLocation(self,
*args)
AddLocation(SBBreakpoint self, SBAddress address) -> SBError |
source code
|
|
|
EventIsBreakpointEvent(*args)
EventIsBreakpointEvent(SBEvent event) -> bool |
source code
|
|
|
GetBreakpointEventTypeFromEvent(*args)
GetBreakpointEventTypeFromEvent(SBEvent event) ->
lldb::BreakpointEventType |
source code
|
|
|
GetBreakpointFromEvent(*args)
GetBreakpointFromEvent(SBEvent event) -> SBBreakpoint |
source code
|
|
|
GetBreakpointLocationAtIndexFromEvent(*args)
GetBreakpointLocationAtIndexFromEvent(SBEvent event, uint32_t
loc_idx) -> SBBreakpointLocation |
source code
|
|
|
GetNumBreakpointLocationsFromEvent(*args)
GetNumBreakpointLocationsFromEvent(SBEvent event_sp) -> uint32_t |
source code
|
|
|
IsHardware(self)
IsHardware(SBBreakpoint self) -> bool |
source code
|
|
|
get_locations_access_object(self)
An accessor function that returns a locations_access() object which
allows lazy location access from a lldb.SBBreakpoint object. |
source code
|
|
|
get_breakpoint_location_list(self)
An accessor function that returns a list() that contains all
locations in a lldb.SBBreakpoint object. |
source code
|
|
|
__iter__(self)
Iterate over all breakpoint locations in a lldb.SBBreakpoint object. |
source code
|
|
|
__len__(self)
Return the number of breakpoint locations in a lldb.SBBreakpoint
object. |
source code
|
|
|
__str__(self)
__str__(SBBreakpoint self) -> PyObject * |
source code
|
|
|
|
|
|