HomeSort by relevance Sort by last modified time
    Searched refs:InputStream (Results 26 - 50 of 846) sorted by null

12 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/io/
SequenceInputStream.java 24 * Concatenates two or more existing {@link InputStream}s. Reads are taken from
28 public class SequenceInputStream extends InputStream {
30 * An enumeration which will return types of InputStream.
32 private Enumeration<? extends InputStream> e;
37 private InputStream in;
50 public SequenceInputStream(InputStream s1, InputStream s2) {
54 Vector<InputStream> inVector = new Vector<InputStream>(1);
63 * {@code e.nextElement()} must be of type {@link InputStream}
    [all...]
  /libcore/luni/src/main/java/java/net/
CacheResponse.java 20 import java.io.InputStream;
26 * InputStream} to access the response body and a {@code Map} for the response headers.
31 * Returns an {@code InputStream} to access the response body.
33 * @return an {@code InputStream} which can be used to fetch the response
39 public abstract InputStream getBody() throws IOException;
  /packages/apps/Email/src/com/android/email/mail/
Body.java 20 import java.io.InputStream;
24 public InputStream getInputStream() throws MessagingException;
  /packages/apps/Email/src/org/apache/james/mime4j/util/
TempFile.java 23 import java.io.InputStream;
31 * Gets an <code>InputStream</code> to read bytes from this temporary file.
41 InputStream getInputStream() throws IOException;
  /packages/apps/Tag/src/com/android/vcard/
VCardParser.java 21 import java.io.InputStream;
43 public void parse(InputStream is, VCardInterpreter interepreter)
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
RecognizerClient.java 21 import java.io.InputStream;
38 public void onMicrophoneStart(InputStream mic);
  /external/apache-http/src/org/apache/http/entity/
BasicHttpEntity.java 35 import java.io.InputStream;
49 private InputStream content;
78 public InputStream getContent()
116 public void setContent(final InputStream instream) {
126 InputStream instream = getContent();
InputStreamEntity.java 35 import java.io.InputStream;
39 * A streamed entity obtaining content from an {@link InputStream InputStream}.
51 private final InputStream content;
55 public InputStreamEntity(final InputStream instream, long length) {
72 public InputStream getContent() throws IOException {
80 InputStream instream = this.content;
  /libcore/luni/src/main/java/org/xml/sax/
InputSource.java 8 import java.io.InputStream;
57 * @see java.io.InputStream
114 public InputSource (InputStream byteStream)
233 * @see java.io.InputStream
235 public void setByteStream (InputStream byteStream)
251 public InputStream getByteStream ()
332 private InputStream byteStream;
  /libcore/luni/src/main/java/java/sql/
Blob.java 20 import java.io.InputStream;
38 * @return a binary {@code InputStream} giving access to the {@code Blob}
43 public InputStream getBinaryStream() throws SQLException;
49 * @return a binary {@code InputStream} giving access to the {@code Blob}
54 public InputStream getBinaryStream(long pos, long length) throws SQLException;
124 * @return a binary {@code InputStream} which can be used to write data into
  /external/proguard/src/proguard/io/
DataEntry.java 48 public InputStream getInputStream() throws IOException;
52 * Closes the previously retrieved InputStream.
  /frameworks/base/graphics/java/android/graphics/
Movie.java 19 import java.io.InputStream;
45 public static native Movie decodeStream(InputStream is);
50 InputStream is;
60 private static Movie decodeTempStream(InputStream is) {
  /packages/apps/Email/src/com/android/email/
FixedLengthInputStream.java 20 import java.io.InputStream;
23 * A filtering InputStream that stops allowing reads after the given length has been read. This
27 public class FixedLengthInputStream extends InputStream {
28 private final InputStream mIn;
32 public FixedLengthInputStream(InputStream in, int length) {
PeekableInputStream.java 20 import java.io.InputStream;
23 * A filtering InputStream that allows single byte "peeks" without consuming the byte. The
27 public class PeekableInputStream extends InputStream {
28 private final InputStream mIn;
32 public PeekableInputStream(InputStream in) {
  /packages/apps/Email/src/org/apache/james/mime4j/
EOLConvertingInputStream.java 23 import java.io.InputStream;
27 * InputStream which converts <code>\r</code>
34 public class EOLConvertingInputStream extends InputStream {
48 * instance converting bytes in the given <code>InputStream</code>.
51 * @param in the <code>InputStream</code> to read from.
53 public EOLConvertingInputStream(InputStream in) {
58 * instance converting bytes in the given <code>InputStream</code>.
60 * @param in the <code>InputStream</code> to read from.
64 public EOLConvertingInputStream(InputStream in, int flags) {
81 * @see java.io.InputStream#read()
    [all...]
RootInputStream.java 23 import java.io.InputStream;
26 * <code>InputStream</code> used by the parser to wrap the original user
35 class RootInputStream extends InputStream {
36 private InputStream is = null;
46 public RootInputStream(InputStream is) {
61 * Truncates this <code>InputStream</code>. After this call any
71 * @see java.io.InputStream#read()
88 * @see java.io.InputStream#read(byte[], int, int)
106 * @see java.io.InputStream#read(byte[])
  /external/bouncycastle/src/main/java/org/bouncycastle/util/io/
Streams.java 5 import java.io.InputStream;
12 public static void drain(InputStream inStr)
21 public static byte[] readAll(InputStream inStr)
29 public static byte[] readAllLimited(InputStream inStr, int limit)
37 public static int readFully(InputStream inStr, byte[] buf)
43 public static int readFully(InputStream inStr, byte[] buf, int off, int len)
59 public static void pipeAll(InputStream inStr, OutputStream outStr)
70 public static long pipeAllLimited(InputStream inStr, long limit, OutputStream outStr)
  /frameworks/base/core/java/com/android/internal/http/multipart/
ByteArrayPartSource.java 34 import java.io.InputStream;
82 public InputStream createInputStream() {
  /frameworks/base/obex/javax/obex/
ObexTransport.java 38 import java.io.InputStream;
68 InputStream openInputStream() throws IOException;
  /libcore/luni/src/main/java/java/security/
Certificate.java 21 import java.io.InputStream;
37 * Decodes a certificate from the given {@code InputStream}. The format of
42 * the {@code InputStream} to read from.
50 public void decode(InputStream stream) throws KeyException, IOException;
54 * {@link #decode(InputStream)} method must be able to decode the format
63 * @see #decode(InputStream)
  /packages/apps/Email/src/com/android/exchange/
MockParserStream.java 21 import java.io.InputStream;
24 * MockParserStream is an InputStream that feeds pre-generated data into various EasParser
30 public class MockParserStream extends InputStream {
  /libcore/luni/src/main/java/javax/xml/transform/stream/
StreamSource.java 23 import java.io.InputStream;
31 * <p><em>Note:</em> Due to their internal use of either a {@link Reader} or {@link InputStream} instance,
49 * {@link #setInputStream(java.io.InputStream inputStream)} or
52 * create an empty source {@link java.io.InputStream} using
53 * {@link java.io.InputStream#InputStream() new InputStream()}.</p>
69 * @param inputStream A valid InputStream reference to an XML stream
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
MyCertificateFactorySpi.java 26 import java.io.InputStream;
66 public Certificate engineGenerateCertificate(InputStream inStream)
69 throw new CertificateException("Incorrect inputstream");
75 public Collection engineGenerateCertificates(InputStream inStream)
78 throw new CertificateException("Incorrect inputstream");
83 public CRL engineGenerateCRL(InputStream inStream) throws CRLException {
85 throw new CRLException("Incorrect inputstream");
91 public Collection engineGenerateCRLs(InputStream inStream)
94 throw new CRLException("Incorrect inputstream");
99 public CertPath engineGenerateCertPath(InputStream inStream
    [all...]
  /external/apache-http/src/org/apache/http/conn/
BasicManagedEntity.java 34 import java.io.InputStream;
98 public InputStream getContent() throws IOException {
154 public boolean eofDetected(InputStream wrapped)
172 public boolean streamClosed(InputStream wrapped)
190 public boolean streamAbort(InputStream wrapped)
  /external/guava/src/com/google/common/io/
MultiInputStream.java 19 import java.io.InputStream;
24 * An {@link InputStream} that concatenates multiple substreams. At most
30 final class MultiInputStream extends InputStream {
32 private Iterator<? extends InputSupplier<? extends InputStream>> it;
33 private InputStream in;
41 Iterator<? extends InputSupplier<? extends InputStream>> it)

Completed in 564 milliseconds

12 3 4 5 6 7 8 91011>>