Lines Matching refs:Locals
58 Thread thread, Method target, Locals.VariableDescription TARGET_desc, int depth) in invoke()
76 public void invoke(Thread t, Method method, Locals.VariableDescription desc, int depth) { in BadSet()
96 public void invoke(Thread t, Method method, Locals.VariableDescription desc, int depth) {
164 Locals.VariableDescription desc = findTargetVar(frame.current_location);
173 private Locals.VariableDescription findTargetVar(long loc) {
174 for (Locals.VariableDescription var : Locals.GetLocalVariableTable(target)) {
199 Locals.EnableLocalVariableAccess();
209 BadGet("Int_at_too_high", Locals::GetLocalVariableInt, (i) -> i + 100),
210 BadGet("Long_at_too_high", Locals::GetLocalVariableLong, (i) -> i + 100),
211 BadGet("Object_at_too_high", Locals::GetLocalVariableObject, (i) -> i + 100),
212 BadSet("Int_at_too_high", Locals::SetLocalVariableInt, Integer.MAX_VALUE, (i) -> i + 100),
213 BadSet("Long_at_too_high", Locals::SetLocalVariableLong, Long.MAX_VALUE, (i) -> i + 100),
215 "Object_at_too_high", Locals::SetLocalVariableObject, "NEW_FOR_SET", (i) -> i + 100),
216 BadGet("Int_at_negative", Locals::GetLocalVariableInt, (i) -> -1),
217 BadGet("Long_at_negative", Locals::GetLocalVariableLong, (i) -> -1),
218 BadGet("Object_at_negative", Locals::GetLocalVariableObject, (i) -> -1),
219 BadSet("Int_at_negative", Locals::SetLocalVariableInt, Integer.MAX_VALUE, (i) -> -1),
220 BadSet("Long_at_negative", Locals::SetLocalVariableLong, Long.MAX_VALUE, (i) -> -1),
221 BadSet("Object_at_negative", Locals::SetLocalVariableObject, "NEW_FOR_SET", (i) -> -1),