Home | History | Annotate | Download | only in net

Lines Matching defs:connection

162         JarURLConnection connection = (JarURLConnection) url.openConnection();
164 connection.connect();
171 connection.getJarFile();
231 JarURLConnection connection = (JarURLConnection) url.openConnection();
232 connection.setUseCaches(false);
233 connection.getInputStream();
234 InputStream in = connection.getInputStream();
235 JarFile jarFile1 = connection.getJarFile();
236 JarEntry jarEntry1 = connection.getJarEntry();
239 JarFile jarFile2 = connection.getJarFile();
240 JarEntry jarEntry2 = connection.getJarEntry();
245 connection.getInputStream();