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

/openjdk7/jdk/src/share/classes/sun/misc/
H A DJarIndex.java125 public static JarIndex getJarIndex(JarFile jar, MetaIndex metaIndex) throws IOException { argument
127 /* If metaIndex is not null, check the meta index to see
130 if (metaIndex != null &&
131 !metaIndex.mayContain(INDEX_NAME)) {
H A DURLClassPath.java595 private MetaIndex metaIndex; field in class:URLClassPath.JarLoader
622 metaIndex = MetaIndex.forJar(f);
624 // installed, set metaIndex to null. A typical
627 // The side effect of null metaIndex will cause
629 if (metaIndex != null && !f.exists()) {
630 metaIndex = null;
634 // metaIndex is null when either there is no such jar file
637 if (metaIndex == null) {
674 index = JarIndex.getJarIndex(jar, metaIndex);
829 if (metaIndex !
[all...]

Completed in 51 milliseconds