Uses of Interface
org.eclipse.cdt.debug.core.model.ICLineBreakpoint

Packages that use ICLineBreakpoint
org.eclipse.cdt.debug.core   
org.eclipse.cdt.debug.core.model   
org.eclipse.cdt.debug.internal.core   
org.eclipse.cdt.debug.internal.core.breakpoints   
org.eclipse.cdt.debug.internal.core.model   
org.eclipse.cdt.debug.internal.ui.views.disassembly   
 

Uses of ICLineBreakpoint in org.eclipse.cdt.debug.core
 

Methods in org.eclipse.cdt.debug.core that return ICLineBreakpoint
static ICLineBreakpoint CDIDebugModel.createLineBreakpoint(java.lang.String sourceHandle, org.eclipse.core.resources.IResource resource, int lineNumber, boolean enabled, int ignoreCount, java.lang.String condition, boolean register)
          Creates and returns a line breakpoint for the source defined by the given source handle, at the given line number.
static ICLineBreakpoint CDIDebugModel.lineBreakpointExists(java.lang.String sourceHandle, org.eclipse.core.resources.IResource resource, int lineNumber)
          Returns the line breakpoint that is already registered with the breakpoint manager for a source with the given handle and the given resource at the given line number.
 

Uses of ICLineBreakpoint in org.eclipse.cdt.debug.core.model
 

Subinterfaces of ICLineBreakpoint in org.eclipse.cdt.debug.core.model
 interface ICAddressBreakpoint
          A breakpoint that suspend the execution when a particular address is reached.
 interface ICFunctionBreakpoint
          A breakpoint that suspends the execution when a function is entered.
 

Methods in org.eclipse.cdt.debug.core.model with parameters of type ICLineBreakpoint
 IAddress ICDebugTarget.getBreakpointAddress(ICLineBreakpoint breakpoint)
          Returns the target address of the given breakpoint.
 

Uses of ICLineBreakpoint in org.eclipse.cdt.debug.internal.core
 

Methods in org.eclipse.cdt.debug.internal.core with parameters of type ICLineBreakpoint
 IAddress CBreakpointManager.getBreakpointAddress(ICLineBreakpoint breakpoint)
           
 

Uses of ICLineBreakpoint in org.eclipse.cdt.debug.internal.core.breakpoints
 

Classes in org.eclipse.cdt.debug.internal.core.breakpoints that implement ICLineBreakpoint
 class AbstractLineBreakpoint
          Base class for different types of location breakponts.
 class CAddressBreakpoint
          A breakpoint that suspend the execution when a particular address is reached.
 class CFunctionBreakpoint
          A breakpoint that suspends the execution when a function is entered.
 class CLineBreakpoint
          A breakpoint that suspends the execution when a particular line of code is reached.
 

Uses of ICLineBreakpoint in org.eclipse.cdt.debug.internal.core.model
 

Methods in org.eclipse.cdt.debug.internal.core.model with parameters of type ICLineBreakpoint
 IAddress CDebugTarget.getBreakpointAddress(ICLineBreakpoint breakpoint)
           
 

Uses of ICLineBreakpoint in org.eclipse.cdt.debug.internal.ui.views.disassembly
 

Methods in org.eclipse.cdt.debug.internal.ui.views.disassembly that return ICLineBreakpoint
 ICLineBreakpoint DisassemblyEditorInput.breakpointExists(IAddress address)
           
 

Methods in org.eclipse.cdt.debug.internal.ui.views.disassembly with parameters of type ICLineBreakpoint
 int DisassemblyEditorInput.getInstructionLine(ICLineBreakpoint breakpoint)