HomeSort by relevance Sort by last modified time
    Searched refs:getInputStream (Results 1 - 25 of 290) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/tests/coretests/src/android/net/
LocalSocketTest.java 49 assertEquals(42, ls1.getInputStream().read());
62 assertEquals(42, ls1.getInputStream().read());
71 assertEquals(1, ls.getInputStream().read());
72 assertEquals(4, ls.getInputStream().available());
77 countRead = ls.getInputStream().read(buffer, 1, 15);
87 ls.getInputStream().read(buffer, 1, 16);
115 ls.getInputStream().read(buffer, -1, 15);
122 ls.getInputStream().read(buffer, 0, -1);
130 countRead = ls1.getInputStream().read(buffer, 0, 0);
132 assertEquals(42, ls1.getInputStream().read())
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Socket.java 29 public InputStream getInputStream() throws IOException;
Support_HttpSocket.java 38 public InputStream getInputStream() throws IOException {
40 return instance.getInputStream();
Support_HttpConnector.java 35 public InputStream getInputStream() throws IOException;
Support_URLConnector.java 50 * @see com.ibm.support.Support_HttpConnector#getInputStream()
52 public InputStream getInputStream() throws IOException {
57 return instance.getInputStream();
  /external/proguard/src/proguard/io/
DataEntry.java 48 public InputStream getInputStream() throws IOException;
RenamedDataEntry.java 59 public InputStream getInputStream() throws IOException
61 return dataEntry.getInputStream();
JarReader.java 50 ZipInputStream zipInputStream = new ZipInputStream(dataEntry.getInputStream());
  /libcore/luni/src/main/java/java/lang/
Process.java 30 * #getInputStream()} and {@link #getErrorStream()} respectively. If these
50 * InputStream in = process.getInputStream();
93 public abstract InputStream getInputStream();
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/message/
BinaryBody.java 41 InputStream getInputStream() throws IOException;
TempFileBinaryBody.java 79 * @see org.apache.james.mime4j.message.BinaryBody#getInputStream()
81 public InputStream getInputStream() throws IOException {
82 return tempFile.getInputStream();
89 IOUtils.copy(getInputStream(),out);
MemoryBinaryBody.java 80 * @see org.apache.james.mime4j.message.BinaryBody#getInputStream()
82 public InputStream getInputStream() throws IOException {
90 IOUtils.copy(getInputStream(),out);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
Body.java 24 public InputStream getInputStream() throws MessagingException;
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/util/
TempFile.java 41 InputStream getInputStream() throws IOException;
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
JarFileTest.java 263 InputStream is = jarFile.getInputStream(entry);
290 InputStream is = jarFile.getInputStream(jarFile.getEntry(JAR1_ENTRY1));
348 * @tests java.util.jar.JarFile#getInputStream(java.util.zip.ZipEntry)
361 is = jf.getInputStream(new JarEntry("invalid"));
364 is = jf.getInputStream(jf.getEntry(JAR1_ENTRY1));
379 * @tests java.util.jar.JarFile#getInputStream(java.util.zip.ZipEntry)
387 InputStream in = jar.getInputStream(entry);
393 in = jar.getInputStream(entry);
403 in = jar.getInputStream(entry);
440 jarFile.getInputStream(zipEntry)
    [all...]
JarInputStreamTest.java 60 InputStream is = new URL(jarName).openConnection().getInputStream();
99 InputStream is = new URL(jarName).openConnection().getInputStream();
136 InputStream is = new URL(jarName2).openConnection().getInputStream();
141 is = new URL(jarName).openConnection().getInputStream();
154 InputStream is = new URL(jarName).openConnection().getInputStream();
168 .getInputStream();
184 .getInputStream();
211 .getInputStream();
232 .getInputStream();
259 .getInputStream();
    [all...]
  /external/javassist/src/main/javassist/
URLClassPath.java 80 return con.getInputStream();
104 InputStream is = con.getInputStream();
137 InputStream s = con.getInputStream();
  /libcore/luni/src/test/java/libcore/sqlite/
OldBlobTest.java 93 InputStream is = blob.getInputStream();
103 InputStream in = testBlob.getInputStream();
130 assertNull(testBlob.getInputStream());
  /external/antlr/src/org/antlr/runtime/
Token.java 90 public CharStream getInputStream();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/file/
FileURLConnectionTest.java 58 assertNotNull(conn.getInputStream());
64 assertNotNull(conn.getInputStream());
72 assertNotNull(conn.getInputStream());
78 assertNotNull(conn.getInputStream());
  /frameworks/base/core/java/android/webkit/
PluginData.java 93 public InputStream getInputStream() {
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
BinaryTempFileBody.java 38 * the user to write to the temp file. After the write the body is available via getInputStream
40 * getInputStream is closed the file is deleted and the Body should be considered disposed of.
60 public InputStream getInputStream() throws MessagingException {
70 InputStream in = getInputStream();
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/device/
DeviceConnection.java 55 public BufferedReader getInputStream() throws IOException {
57 mIn = new BufferedReader(new InputStreamReader(mSocketChannel.socket().getInputStream()));
  /external/mockwebserver/src/test/java/com/google/mockwebserver/
MockWebServerTest.java 49 InputStream in = connection.getInputStream();
68 InputStream in = connection.getInputStream();
86 InputStream in = connection.getInputStream();
105 InputStream in = urlConnection.getInputStream();
116 InputStream in2 = urlConnection2.getInputStream();
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
ZipFileTest.java 140 zfile.getInputStream(zfile.getEntry("ztest/file1.txt"));
188 in = zfile.getInputStream(zentry);
197 in = zfile.getInputStream(zentry);
206 in = zfile.getInputStream(zentry);
228 * @tests java.util.zip.ZipFile#getInputStream(java.util.zip.ZipEntry)
232 // java.util.zip.ZipFile.getInputStream(java.util.zip.ZipEntry)
236 is = zfile.getInputStream(zentry);
240 assertEquals("getInputStream read incorrect data", "This is text", new String(rbuf,
243 fail("IOException during getInputStream");
275 InputStream is = zfile.getInputStream(zentry)
    [all...]

Completed in 506 milliseconds

1 2 3 4 5 6 7 8 91011>>