Uses of Interface
org.eclipse.cdt.core.IAddress

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

Uses of IAddress in org.eclipse.cdt.core
 

Methods in org.eclipse.cdt.core that return IAddress
 IAddress IAddress.add(java.math.BigInteger offset)
          Adds offset to address and returns new address object which is the result
 IAddress IAddress.add(long offset)
          Adds offset to address and returns new address object which is the result

Note: This method has an offset limit of Long.MAX and Long.MIN, which under some addressing schems may impose an unnesseary limitation, see IAddressa.add(BigInteger offset) to handle larger offsets.
 IAddress IAddressFactory.createAddress(java.math.BigInteger addr)
          Create address from a BigInteger
 IAddress IAddressFactory.createAddress(java.lang.String addr)
          Creates address from string representation. 1.
 IAddress IAddressFactory.createAddress(java.lang.String addr, int radix)
          Creates address from string with given radix.
 IAddress IBinaryParser.ISymbol.getAddress()
          Address of the symbol
 IAddress IAddressFactory.getMax()
          Returns maximal address.
 IAddress IAddressFactory.getZero()
          Returns zero address, i.e. minimal possible address
 

Methods in org.eclipse.cdt.core with parameters of type IAddress
 java.math.BigInteger IAddress.distanceTo(IAddress other)
          Returns distance to address.
 IBinaryParser.ISymbol IBinaryParser.IBinaryObject.getSymbol(IAddress addr)
          Symbo at this address.
 

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

Methods in org.eclipse.cdt.debug.core with parameters of type IAddress
static ICAddressBreakpoint CDIDebugModel.createAddressBreakpoint(java.lang.String module, java.lang.String sourceHandle, org.eclipse.core.resources.IResource resource, IAddress address, boolean enabled, int ignoreCount, java.lang.String condition, boolean register)
          Creates and returns an address breakpoint for the source defined by the given source handle, at the given address.
static ICAddressBreakpoint CDIDebugModel.createAddressBreakpoint(java.lang.String module, java.lang.String sourceHandle, org.eclipse.core.resources.IResource resource, int lineNumber, IAddress address, boolean enabled, int ignoreCount, java.lang.String condition, boolean register)
          Creates and returns an address breakpoint for the source defined by the given source handle, at the given address.
 

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

Methods in org.eclipse.cdt.debug.core.model that return IAddress
 IAddress ICStackFrame.getAddress()
          Returns the address of this stack frame.
 IAddress IAsmInstruction.getAdress()
          Returns the address of this instruction.
 IAddress ICModule.getBaseAddress()
          Returns the base address of this module.
 IAddress ICDebugTarget.getBreakpointAddress(ICLineBreakpoint breakpoint)
          Returns the target address of the given breakpoint.
 

Methods in org.eclipse.cdt.debug.core.model with parameters of type IAddress
 boolean IJumpToAddress.canJumpToAddress(IAddress address)
          Returns whether this operation is currently available for this element.
 boolean IRunToAddress.canRunToAddress(IAddress address)
          Returns whether this operation is currently available for this element.
 void IJumpToAddress.jumpToAddress(IAddress address)
          Causes this element to resume the execution at the specified address.
 void IRunToAddress.runToAddress(IAddress address, boolean skipBreakpoints)
          Causes this element to run to specified address.
 

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

Methods in org.eclipse.cdt.debug.internal.core that return IAddress
 IAddress CBreakpointManager.getBreakpointAddress(ICLineBreakpoint breakpoint)
           
 

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

Methods in org.eclipse.cdt.debug.internal.core.model that return IAddress
 IAddress CStackFrame.getAddress()
           
 IAddress AsmInstruction.getAdress()
           
 IAddress CModule.getBaseAddress()
           
 IAddress CDebugTarget.getBreakpointAddress(ICLineBreakpoint breakpoint)
           
 

Methods in org.eclipse.cdt.debug.internal.core.model with parameters of type IAddress
 boolean CStackFrame.canJumpToAddress(IAddress address)
           
 boolean CStackFrame.canRunToAddress(IAddress address)
           
 void CStackFrame.jumpToAddress(IAddress address)
           
 void CStackFrame.runToAddress(IAddress address, boolean skipBreakpoints)
           
 

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

Methods in org.eclipse.cdt.debug.internal.ui.views.disassembly that return IAddress
 IAddress DisassemblyEditorInput.getAddress(int lineNumber)
           
 

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