Uses of Interface
com.pnfsoftware.jeb.core.units.code.debug.IDebuggerBreakpoint
Packages that use IDebuggerBreakpoint
Package
Description
This package and sub-packages contain all types used by Android code analysis plugins, including
dexdec, the dex decompiler.This package and sub-packages contain types used by the native code analysis pipeline, including
gendec (the generic decompiler).Types used by debugger plugins.
-
Uses of IDebuggerBreakpoint in com.pnfsoftware.jeb.core.units.code.android
Methods in com.pnfsoftware.jeb.core.units.code.android that return IDebuggerBreakpointModifier and TypeMethodDescriptionIDalvikDebuggerUnit.setBreakpointOnBytecode(String msig, int offsetInMethod) IDalvikDebuggerUnit.setBreakpointOnException(String tsig, boolean triggerOnCaughtExceptions, boolean triggerOnUncaughtExceptions, boolean triggerOnSubtypes) IDalvikDebuggerUnit.setBreakpointOnField(String fsig, boolean triggerOnFieldRead, boolean triggerOnFieldWrite) IDalvikDebuggerUnit.setBreakpointOnMethod(String msig, boolean triggerOnMethodEntry, boolean triggerOnMethodExit) -
Uses of IDebuggerBreakpoint in com.pnfsoftware.jeb.core.units.code.asm
Methods in com.pnfsoftware.jeb.core.units.code.asm that return IDebuggerBreakpointModifier and TypeMethodDescriptionINativeDebuggerUnit.getBreakpoint(long memoryAddress) Get the breakpoints set at the explicit memory address.default IDebuggerBreakpointINativeDebuggerUnit.setBreakpoint(long memoryAddress) Same assetBreakpoint(memoryAddress, 0, 0).INativeDebuggerUnit.setBreakpoint(long memoryAddress, int flags, int processorMode) Set a breakpoint at the explicit memory address. -
Uses of IDebuggerBreakpoint in com.pnfsoftware.jeb.core.units.code.debug
Methods in com.pnfsoftware.jeb.core.units.code.debug that return IDebuggerBreakpointModifier and TypeMethodDescriptionIDebuggerUnit.getBreakpoint(String address, ICodeUnit unit) Get the execution breakpoint set at the given address.default IDebuggerBreakpointIDebuggerUnit.setBreakpoint(String address, ICodeUnit unit) Set a general standard breakpoint at the given address.IDebuggerUnit.setBreakpoint(String address, ICodeUnit unit, int flags, boolean overwrite) Set a general breakpoint at the given address.Methods in com.pnfsoftware.jeb.core.units.code.debug that return types with arguments of type IDebuggerBreakpointModifier and TypeMethodDescriptionList<? extends IDebuggerBreakpoint> IDebuggerUnit.getBreakpoints()Retrieve a list of execution breakpoints.Methods in com.pnfsoftware.jeb.core.units.code.debug with parameters of type IDebuggerBreakpointModifier and TypeMethodDescriptionbooleanIDebuggerUnit.clearBreakpoint(IDebuggerBreakpoint breakpoint) Remove an execution breakpoint.