Home
last modified time | relevance | path

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

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DClassLoaderTest.java140 JarURLConnection uncachedConnection = (JarURLConnection) resourceFromJar.openConnection(); in testUncachedJarStreamBehavior() local
141 uncachedConnection.setUseCaches(false); in testUncachedJarStreamBehavior()
142 JarFile uncachedJarFile = uncachedConnection.getJarFile(); in testUncachedJarStreamBehavior()
143 InputStream is = uncachedConnection.getInputStream(); in testUncachedJarStreamBehavior()
147 isJarUrlConnectClosed(uncachedConnection)); in testUncachedJarStreamBehavior()
185 JarURLConnection uncachedConnection = (JarURLConnection) resourceFromJar.openConnection(); in testResourceJarFileBehavior() local
186 assertNotSame(uncachedConnection, urlConnection2); in testResourceJarFileBehavior()
187 uncachedConnection.setUseCaches(false); in testResourceJarFileBehavior()
195 JarFile uncachedJarFile = uncachedConnection.getJarFile(); in testResourceJarFileBehavior()