Searched refs:bytecodesRef (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DConcreteMethodImpl.java76 private SoftReference bytecodesRef = null; field in class:ConcreteMethodImpl
383 byte[] bytecodes = (bytecodesRef == null) ? null :
384 (byte[])bytecodesRef.get();
387 bytecodesRef = new SoftReference(bytecodes);
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DConcreteMethodImpl.java81 private SoftReference<byte[]> bytecodesRef = null; field in class:ConcreteMethodImpl
249 byte[] bytecodes = (bytecodesRef == null) ? null :
250 bytecodesRef.get();
258 bytecodesRef = new SoftReference<byte[]>(bytecodes);

Completed in 62 milliseconds