Lines Matching defs:slot

31     public final int slot;  field in Locals.VariableDescription
34 long start, int length, String name, String sig, String gen_sig, int slot) { in VariableDescription()
97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt()
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong()
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat()
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble()
101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot); in GetLocalVariableObject()
104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt()
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong()
118 public static native void SetLocalVariableFloat(Thread thr, int depth, int slot, float val); in SetLocalVariableFloat()
119 public static native void SetLocalVariableDouble(Thread thr, int depth, int slot, double val); in SetLocalVariableDouble()
120 public static native void SetLocalVariableObject(Thread thr, int depth, int slot, Object val); in SetLocalVariableObject()