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

12 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/content/
ContentInsertHandler.java 24 import java.io.InputStream;
32 * insert data from InputStream to ContentResolver
34 * @param in InputStream
38 public void insert(ContentResolver contentResolver, InputStream in)
  /libcore/luni/src/main/java/java/io/
SequenceInputStream.java 25 * Concatenates two or more existing {@link InputStream}s. Reads are taken from
29 public class SequenceInputStream extends InputStream {
31 * An enumeration which will return types of InputStream.
33 private Enumeration<? extends InputStream> e;
38 private InputStream in;
51 public SequenceInputStream(InputStream s1, InputStream s2) {
55 Vector<InputStream> inVector = new Vector<InputStream>(1);
64 * {@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/emailcommon/src/com/android/emailcommon/mail/
Body.java 20 import java.io.InputStream;
24 public InputStream getInputStream() throws MessagingException;
  /packages/apps/Email/emailcommon/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/VoiceDialer/src/com/android/voicedialer/
RecognizerClient.java 21 import java.io.InputStream;
38 public void onMicrophoneStart(InputStream mic);
  /external/antlr/src/org/antlr/runtime/
ANTLRInputStream.java 32 /** A kind of ReaderStream that pulls from an InputStream.
39 public ANTLRInputStream(InputStream input) throws IOException {
43 public ANTLRInputStream(InputStream input, int size) throws IOException {
47 public ANTLRInputStream(InputStream input, String encoding) throws IOException {
51 public ANTLRInputStream(InputStream input, int size, String encoding) throws IOException {
55 public ANTLRInputStream(InputStream input,
  /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();
  /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.
  /libcore/luni/src/main/java/libcore/net/url/
FtpURLInputStream.java 21 import java.io.InputStream;
26 * This class associates a given inputStream with a control socket. This ensures
29 class FtpURLInputStream extends InputStream {
31 private InputStream is; // Actual input stream
35 public FtpURLInputStream(InputStream is, Socket controlSocket) {
  /packages/apps/Email/emailcommon/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[])
  /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) {
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/testtype/
TestPackageDefTest.java 20 import java.io.InputStream;
36 InputStream getFileStream(File dir, String fileName) {
  /external/apache-harmony/support/src/test/java/tests/support/
Support_HttpConnector.java 21 import java.io.InputStream;
35 public InputStream getInputStream() throws IOException;
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DEROctetStringParser.java 4 import java.io.InputStream;
17 public InputStream getOctetStream()
  /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/Exchange/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...]

Completed in 610 milliseconds

12 3 4 5 6 7 8 91011>>