Searched refs:getInputStream (Results 1 - 25 of 70) sorted by relevance

123

/dalvik/libcore/luni/src/main/java/java/lang/
H A DProcess.java63 abstract public InputStream getInputStream(); method in class:Process
/dalvik/libcore/luni/src/test/java/tests/api/java/net/
H A DExcludedProxyTest.java73 conn1.getInputStream();
81 conn3.getInputStream();
101 InputStream is2 = conn2.getInputStream();
124 InputStream is = conn4.getInputStream();
157 s.getInputStream();
174 s.getInputStream();
217 InputStream is = conn.getInputStream();
H A DUnixSocketTest.java38 * @tests java.net.Socket#getInputStream()
55 InputStream in = worker.getInputStream();
61 InputStream clientIn = pingClient.getInputStream();
H A DJarURLConnectionTest.java129 InputStream is = jf.getInputStream(je);
362 InputStream in = connection.getInputStream();
363 in = connection.getInputStream();
374 connection.getInputStream();
440 * @tests java.net.JarURLConnection#getInputStream()
445 method = "getInputStream",
467 InputStream is = conn.getInputStream();
474 conn.getInputStream();
/dalvik/libcore/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
H A DJarInputStreamTest.java75 is = new URL(jarName).openConnection().getInputStream();
119 .getInputStream();
124 is = new URL(jarName).openConnection().getInputStream();
147 InputStream is = new URL(jarName).openConnection().getInputStream();
186 InputStream is = new URL(jarName).openConnection().getInputStream();
225 InputStream is = new URL(intJarName).openConnection().getInputStream();
246 InputStream is = new URL(modJarName).openConnection().getInputStream();
279 .getInputStream();
305 InputStream is = new URL(modJarName).openConnection().getInputStream();
337 InputStream is = new URL(modJarName).openConnection().getInputStream();
[all...]
H A DJarFileTest.java540 InputStream is = jarFile.getInputStream(entry);
657 * @tests java.util.jar.JarFile#getInputStream(java.util.zip.ZipEntry)
662 method = "getInputStream",
681 InputStream in = jar.getInputStream(entry);
690 InputStream in = jar.getInputStream(entry);
703 InputStream in = jar.getInputStream(entry);
724 InputStream in = jar.getInputStream(entry);
751 jarFile.getInputStream(zipEntry);
770 jarFile.getInputStream(zipEntry).skip(Long.MAX_VALUE);
780 method = "getInputStream",
[all...]
/dalvik/libcore/archive/src/main/java/java/util/jar/
H A DJarFile.java305 InputStream is = super.getInputStream(manifestEntry);
309 is = super.getInputStream(manifestEntry);
359 InputStream is = super.getInputStream(entry);
383 public InputStream getInputStream(ZipEntry ze) throws IOException { method in class:JarFile
402 InputStream in = super.getInputStream(ze);
/dalvik/libcore/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
H A DZipFileTest.java229 InputStream is1 = zf.getInputStream(zf.getEntry("File1.txt"));
230 InputStream is2 = zf.getInputStream(zf.getEntry("File2.txt"));
312 in = zfile.getInputStream(zentry);
320 in = zfile.getInputStream(zentry);
341 in = zfile.getInputStream(zentry);
374 * @tests java.util.zip.ZipFile#getInputStream(java.util.zip.ZipEntry)
379 method = "getInputStream",
384 // java.util.zip.ZipFile.getInputStream(java.util.zip.ZipEntry)
389 is = zfile.getInputStream(zentry);
393 assertEquals("getInputStream rea
[all...]
H A DGZIPInputStreamTest.java79 .openConnection().getInputStream());
107 .openConnection().getInputStream(), 200);
121 .openConnection().getInputStream(), 0);
134 .openConnection().getInputStream(), -1);
166 .openConnection().getInputStream());
292 .openConnection().getInputStream());
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
H A DHttpConnection.java144 public InputStream getInputStream() throws IOException { method in class:HttpConnection
147 sslInputStream = sslSocket.getInputStream();
151 inputStream = socket.getInputStream();
/dalvik/libcore/luni/src/test/java/tests/api/java/lang/
H A DProcessTest.java33 * @tests java.lang.Process#getInputStream()
38 method = "getInputStream",
60 InputStream is = proc.getInputStream();
105 InputStream is = proc.getInputStream();
226 public InputStream getInputStream() { method in class:ProcessTest.ProcessClass
H A DProcess2Test.java38 * @tests java.lang.Process#getInputStream(),
53 method = "getInputStream",
67 assertNotNull(p.getInputStream());
/dalvik/libcore/sql/src/test/java/tests/SQLite/
H A DBlobTest.java127 method = "getInputStream",
145 InputStream is = blob.getInputStream();
168 * @tests Blob.getInputStream()
173 method = "getInputStream",
177 InputStream in = testBlob.getInputStream();
224 assertNull(testBlob.getInputStream());
/dalvik/libcore/xml/src/main/java/javax/xml/transform/sax/
H A DSAXSource.java195 isource.setByteStream(ss.getInputStream());
/dalvik/libcore/xml/src/main/java/javax/xml/transform/stream/
H A DStreamSource.java164 public InputStream getInputStream() { method in class:StreamSource
/dalvik/libcore/luni/src/test/java/java/net/
H A DURLConnectionTest.java47 BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
135 BufferedReader in = new BufferedReader(new InputStreamReader(s.getInputStream()));
/dalvik/libcore/support/src/test/java/tests/support/
H A DSupport_Exec.java90 streamToStringCallable(process.getInputStream()));
130 executorService.submit(streamToStringCallable(process.getInputStream()));
/dalvik/libcore/luni/src/main/java/java/net/
H A DSocketImpl.java184 protected abstract InputStream getInputStream() throws IOException; method in class:SocketImpl
H A DHttpURLConnection.java359 // Call getInputStream() first since getHeaderField() doesn't return
361 getInputStream();
H A DURLConnection.java162 contentType = guessContentTypeFromStream(getInputStream());
196 contentType = guessContentTypeFromStream(getInputStream());
561 public InputStream getInputStream() throws IOException { method in class:URLConnection
1054 return u.getInputStream();
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/jar/
H A DJarURLConnectionImpl.java148 final InputStream is = jarFileURL.openConnection().getInputStream();
222 public InputStream getInputStream() throws IOException { method in class:JarURLConnectionImpl
236 .getInputStream(jarEntry), jarFile);
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
H A DHttpURLConnectionTest.java103 int num = socket.getInputStream().read(buff);
108 num = socket.getInputStream().read(buff);
113 num = socket.getInputStream().read(buff);
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/ftp/
H A DFtpURLConnection.java224 ctrlInput = controlSocket.getInputStream();
255 new BufferedInputStream(dataSocket.getInputStream(), 8192),
303 public InputStream getInputStream() throws IOException { method in class:FtpURLConnection
337 * @see #getInputStream()
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/https/
H A DHttpsURLConnectionImpl.java252 public InputStream getInputStream() throws IOException { method in class:HttpsURLConnectionImpl
253 return httpsEngine.getInputStream();
389 InputStream is = connection.getInputStream();
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/file/
H A DFileURLConnection.java182 public InputStream getInputStream() throws IOException { method in class:FileURLConnection

Completed in 571 milliseconds

123