HomeSort by relevance Sort by last modified time
    Searched refs:InputStream (Results 476 - 500 of 2666) sorted by null

<<11121314151617181920>>

  /libcore/ojluni/src/main/java/java/sql/
ResultSet.java 32 import java.io.InputStream;
436 * <code>InputStream.available</code>
448 java.io.InputStream getAsciiStream(int columnIndex) throws SQLException;
466 * <code>InputStream.available</code>
484 java.io.InputStream getUnicodeStream(int columnIndex) throws SQLException;
497 * <code>InputStream.available</code>
509 java.io.InputStream getBinaryStream(int columnIndex)
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
Impl_RowSet.java 20 import java.io.InputStream;
109 public void setAsciiStream(int parameterIndex, InputStream theInputStream,
117 public void setBinaryStream(int parameterIndex, InputStream theInputStream,
289 public InputStream getAsciiStream(int columnIndex) throws SQLException {
293 public InputStream getAsciiStream(String columnName) throws SQLException {
315 public InputStream getBinaryStream(int columnIndex) throws SQLException {
319 public InputStream getBinaryStream(String columnName) throws SQLException {
527 public InputStream getUnicodeStream(int columnIndex) throws SQLException {
531 public InputStream getUnicodeStream(String columnName) throws SQLException {
615 public void updateAsciiStream(int columnIndex, InputStream x, int length
    [all...]
  /tools/tradefederation/core/tests/src/com/android/tradefed/command/remote/
RemoteManagerTest.java 38 import java.io.InputStream;
75 InputStream data = new ByteArrayInputStream(buf.getBytes());
94 InputStream data = new ByteArrayInputStream(buf.getBytes());
113 InputStream data = new ByteArrayInputStream(buf.getBytes());
129 InputStream data = new ByteArrayInputStream(buf.getBytes());
147 InputStream data = new ByteArrayInputStream(buf.getBytes());
165 InputStream data = new ByteArrayInputStream(buf.getBytes());
182 InputStream data = new ByteArrayInputStream(buf.getBytes());
199 InputStream data = new ByteArrayInputStream(buf.getBytes());
220 InputStream data = new ByteArrayInputStream(buf.getBytes())
    [all...]
  /art/test/656-annotation-lookup-generic-jni/src/
Main.java 19 import java.io.InputStream;
33 InputStream inputStream = zipFile.getInputStream(zipEntry);
36 inputStream.read(dexFileContents, 0, dexFileSize);
  /art/tools/ahat/src/
StaticHandler.java 23 import java.io.InputStream;
40 InputStream is = loader.getResourceAsStream(mResourceName);
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
ShellCommandBuilder.java 26 import java.io.InputStream;
74 try (InputStream inputStream = new FileInputStream(fd.getFileDescriptor())) {
76 new InputStreamReader(inputStream, StandardCharsets.UTF_8))) {
  /cts/tests/tests/security/src/android/security/cts/
Movie33897722.java 29 import java.io.InputStream;
43 InputStream exploitImage = mContext.getResources().openRawResource(R.raw.bug_33897722);
  /cts/tests/tests/telephony2/src/android/telephony2/cts/
PhoneNumberTest.java 28 import java.io.InputStream;
43 InputStream is = new FileInputStream(pfd.getFileDescriptor());
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
HtmlReport.java 21 import java.io.InputStream;
62 InputStream xsl = CtsApiCoverage.class.getResourceAsStream("/api-coverage.xsl");
  /dalvik/dx/src/com/android/multidex/
ArchivePathElement.java 21 import java.io.InputStream;
43 public InputStream open(String path) throws IOException {
FolderPathElement.java 22 import java.io.InputStream;
37 public InputStream open(String path) throws FileNotFoundException {
  /development/samples/Vault/src/com/example/android/vault/
Utils.java 27 import java.io.InputStream;
59 final InputStream in = new FileInputStream(file);
  /development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
ChatManager.java 8 import java.io.InputStream;
26 private InputStream iStream;
43 // Read from the InputStream
  /external/apache-harmony/support/src/test/java/tests/support/
Support_URLConnector.java 21 import java.io.InputStream;
52 public InputStream getInputStream() throws IOException {
  /external/apache-http/src/org/apache/http/entity/
BufferedHttpEntity.java 36 import java.io.InputStream;
81 public InputStream getContent() throws IOException {
SerializableEntity.java 37 import java.io.InputStream;
75 public InputStream getContent() throws IOException, IllegalStateException {
StringEntity.java 36 import java.io.InputStream;
86 public InputStream getContent() throws IOException {
  /external/apache-http/src/org/apache/http/impl/io/
ContentLengthInputStream.java 35 import java.io.InputStream;
48 * through the {@link InputStream#mark} and {@link InputStream#reset} calls to
62 * support {@link InputStream#mark} and {@link InputStream#reset}. That choice
76 public class ContentLengthInputStream extends InputStream {
141 * @see java.io.InputStream#read()
156 * Does standard {@link InputStream#read(byte[], int, int)} behavior, but
190 * @see java.io.InputStream#read(byte[])
202 * @see InputStream#skip(long
    [all...]
  /external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/
LimitedInputStreamTest.java 23 import java.io.InputStream;
34 private static class ForeverInputStream extends InputStream {
  /external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
DeflateUncompressor.java 18 import java.io.InputStream;
38 * {@link #uncompress(InputStream, OutputStream)}.
44 * {@link #uncompress(InputStream, OutputStream)}.
69 * {@link #uncompress(InputStream, OutputStream)}.
78 * {@link #uncompress(InputStream, OutputStream)}.
80 * buffer. This buffer is important for performance, <em>even if the {@link InputStream} is
90 * {@link #uncompress(InputStream, OutputStream)}.
99 * {@link #uncompress(InputStream, OutputStream)}.
167 public void uncompress(InputStream compressedIn, OutputStream uncompressedOut)
PartiallyUncompressingPipe.java 19 import java.io.InputStream;
23 * A pipe that moves data from an {@link InputStream} to an {@link OutputStream}, optionally
43 * Modes available for {@link PartiallyUncompressingPipe#pipe(InputStream, Mode)}.
47 * Copy bytes form the {@link InputStream} to the {@link OutputStream} without modification.
52 * Treat the {@link InputStream} as a deflate stream with nowrap=false, uncompress the bytes
58 * Treat the {@link InputStream} as a deflate stream with nowrap=true, uncompress the bytes
77 * Pipes the entire contents of the specified {@link InputStream} to the configured
84 public long pipe(InputStream in, Mode mode) throws IOException {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DefiniteLengthInputStream.java 5 import java.io.InputStream;
18 InputStream in,
IndefiniteLengthInputStream.java 5 import java.io.InputStream;
16 InputStream in,
StreamUtil.java 6 import java.io.InputStream;
21 static int findLimit(InputStream in)
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLBIOSource.java 20 import java.io.InputStream;
61 private static class ByteBufferInputStream extends InputStream {

Completed in 1763 milliseconds

<<11121314151617181920>>