Searched defs:variablesRef (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DConcreteMethodImpl.java72 private SoftReference variablesRef = null; field in class:ConcreteMethodImpl
405 List variables = (variablesRef == null) ? null :
406 (List)variablesRef.get();
414 variablesRef = new SoftReference(variables);
464 variablesRef = new SoftReference(variables);
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DConcreteMethodImpl.java77 private SoftReference<List<LocalVariable>> variablesRef = null; field in class:ConcreteMethodImpl
535 List<LocalVariable> variables = (variablesRef == null) ? null :
536 variablesRef.get();
542 variablesRef = new SoftReference<List<LocalVariable>>(variables);

Completed in 23 milliseconds