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

/openjdk7/jdk/src/share/classes/sun/misc/
H A DMetaIndex.java132 private static volatile Map<File, MetaIndex> jarMap; field in class:MetaIndex
144 // jarMap is not strictly thread-safe when the meta index mechanism
151 // 'synchronized' is added to protect the jarMap from being modified
157 // jarMap. If this mechanism is extended beyond the boot and
265 if (jarMap == null) {
267 if (jarMap == null) {
268 jarMap = new HashMap<File, MetaIndex>();
272 assert jarMap != null;
273 return jarMap;
H A DJarIndex.java57 private HashMap jarMap; field in class:JarIndex
82 jarMap = new HashMap();
206 // add the mapping to jarMap
207 addToList(jarName, packageName, jarMap);
218 // add the mapping to jarMap
219 addToList(jarName, fileName, jarMap);
285 LinkedList jarlist = (LinkedList)jarMap.get(jar);
327 addToList(currentJar, name, jarMap);

Completed in 300 milliseconds