Home
last modified time | relevance | path

Searched refs:typesByID (Results 1 – 1 of 1) sorted by relevance

/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DVirtualMachineImpl.java74 private Map<Long, ReferenceType> typesByID; field in VirtualMachineImpl
756 if (typesByID == null) { in addReferenceType()
784 typesByID.put(new Long(id), type); in addReferenceType()
796 if (typesByID == null) { in removeReferenceType()
812 typesByID.remove(new Long(type.ref())); in removeReferenceType()
833 if (typesByID == null) { in findReferenceTypes()
852 typesByID = new HashMap<Long, ReferenceType>(300); in initReferenceTypes()
897 if (typesByID != null) { in referenceType()
898 retType = (ReferenceTypeImpl)typesByID.get(new Long(id)); in referenceType()