Lines Matching refs: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() argument
40 this.slot = slot; in VariableDescription()
52 this.slot, in toString()
64 v.slot == slot && in equals()
70 return Objects.hash(this.signature, this.name, this.generic_signature, this.slot, in hashCode()
97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument
101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot); in GetLocalVariableObject() argument
104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
118 public static native void SetLocalVariableFloat(Thread thr, int depth, int slot, float val); in SetLocalVariableFloat() argument
119 public static native void SetLocalVariableDouble(Thread thr, int depth, int slot, double val); in SetLocalVariableDouble() argument
120 public static native void SetLocalVariableObject(Thread thr, int depth, int slot, Object val); in SetLocalVariableObject() argument