Lines Matching refs:Executable
19 import java.lang.reflect.Executable;
27 public final Executable method;
30 public BP(Executable method) {
34 public BP(Executable method, long location) {
83 public void setBreakpoint(Executable method, long location) {
94 public void clearBreakpoint(Executable method, long location) {
104 Executable breakpointReached,
115 Executable breakpointReached,
144 public static native void setBreakpoint(Executable m, long loc);
145 public static void setBreakpoint(Executable m, LineNumber l) {
149 public static native void clearBreakpoint(Executable m, long loc);
150 public static void clearBreakpoint(Executable m, LineNumber l) {
154 private static native Object[] getLineNumberTableNative(Executable m);
155 public static LineNumber[] getLineNumberTable(Executable m) {
169 public static native long getStartLocation(Executable m);
171 public static int locationToLine(Executable m, long location) {
188 public static long lineToLocation(Executable m, int line) throws Exception {