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

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Email/emailcommon/src/org/apache/commons/io/input/
DemuxInputStream.java 20 import java.io.InputStream;
30 extends InputStream
32 private InheritableThreadLocal<InputStream> m_streams = new InheritableThreadLocal<InputStream>();
38 * @return the InputStream that was previously active
40 public InputStream bindStream( InputStream input )
42 InputStream oldValue = getStream();
56 InputStream input = getStream();
73 InputStream input = getStream();
    [all...]
ClosedInputStream.java 19 import java.io.InputStream;
32 public class ClosedInputStream extends InputStream {
CloseShieldInputStream.java 19 import java.io.InputStream;
39 public CloseShieldInputStream(InputStream in) {
  /libcore/luni/src/main/java/java/lang/
Process.java 20 import java.io.InputStream;
50 * InputStream in = process.getInputStream();
84 public abstract InputStream getErrorStream();
93 public abstract InputStream getInputStream();
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
ASN1OctetStringParser.java 3 import java.io.InputStream;
8 public InputStream getOctetStream();
LimitedInputStream.java 3 import java.io.InputStream;
6 extends InputStream
8 protected final InputStream _in;
12 InputStream in,
  /external/apache-http/src/org/apache/http/conn/
EofSensorWatcher.java 33 import java.io.InputStream;
64 boolean eofDetected(InputStream wrapped)
84 boolean streamClosed(InputStream wrapped)
107 boolean streamAbort(InputStream wrapped)
BasicEofSensorWatcher.java 33 import java.io.InputStream;
78 public boolean eofDetected(InputStream wrapped)
96 public boolean streamClosed(InputStream wrapped)
114 public boolean streamAbort(InputStream wrapped)
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
FileTransforms.java 20 import java.io.InputStream;
30 public static InputStream getDecryptedStream(InputStream in) {
35 public static InputStream getUncompressedStream(InputStream in) throws IOException {
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Socket.java 21 import java.io.InputStream;
29 public InputStream getInputStream() throws IOException;
  /external/javassist/src/main/javassist/
ClassPath.java 18 import java.io.InputStream;
50 InputStream openClassfile(String classname) throws NotFoundException;
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
AutoDetector.java 19 import java.io.InputStream;
22 Classes which accept an InputStream and provide a Reader which figures
23 out the encoding of the InputStream and reads characters from it should
25 @see java.io.InputStream
32 Given an InputStream, return a suitable Reader that understands
33 the presumed character encoding of that InputStream.
34 If bytes are consumed from the InputStream in the process, they
35 <i>must</i> be pushed back onto the InputStream so that they can be
37 @param i The InputStream
38 @return A Reader that reads from the InputStream
    [all...]
  /frameworks/base/core/java/com/android/internal/http/multipart/
PartSource.java 34 import java.io.InputStream;
62 * Gets a new InputStream for reading this source. This method can be
66 * @return a new InputStream
68 * @throws IOException if an error occurs when creating the InputStream
70 InputStream createInputStream() throws IOException;
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/message/
BinaryBody.java 23 import java.io.InputStream;
35 * Gets a <code>InputStream</code> which reads the bytes of the
41 InputStream getInputStream() throws IOException;
  /frameworks/opt/vcard/java/com/android/vcard/
VCardParser.java 21 import java.io.InputStream;
34 * <p>Parses a whole InputStream as a vCard file and lets registered {@link VCardInterpreter}
37 * <p>This method reads a whole InputStream. If you just want to parse one vCard entry inside
38 * a vCard file with multiple entries, try {@link #parseOne(InputStream)}.</p>
43 public abstract void parse(InputStream is) throws IOException, VCardException;
46 * <p>Parses the first vCard entry in InputStream and lets registered {@link VCardInterpreter}
74 public abstract void parseOne(InputStream is) throws IOException, VCardException;
78 * {@link #parse(InputStream)}
81 public void parse(InputStream is, VCardInterpreter interpreter)
  /libcore/luni/src/test/java/tests/api/org/xml/sax/support/
BrokenInputStream.java 20 import java.io.InputStream;
23 * Implements an InputStream what wraps another InputStream and throws an
27 public class BrokenInputStream extends InputStream {
29 private InputStream stream;
33 public BrokenInputStream(InputStream stream, int offset) {
  /sdk/common/src/com/android/io/
IAbstractFile.java 19 import java.io.InputStream;
27 INPUTSTREAM, OUTPUTSTREAM;
31 * Returns an {@link InputStream} object on the file content.
34 InputStream getContents() throws StreamException;
41 void setContents(InputStream source) throws StreamException;
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/
AbstractContentHandler.java 23 import java.io.InputStream;
49 * @see org.apache.james.mime4j.ContentHandler#body(org.apache.james.mime4j.BodyDescriptor, java.io.InputStream)
51 public void body(BodyDescriptor bd, InputStream is) throws IOException {
73 * @see org.apache.james.mime4j.ContentHandler#epilogue(java.io.InputStream)
75 public void epilogue(InputStream is) throws IOException {
85 * @see org.apache.james.mime4j.ContentHandler#preamble(java.io.InputStream)
87 public void preamble(InputStream is) throws IOException {
109 * @see org.apache.james.mime4j.ContentHandler#raw(java.io.InputStream)
111 public void raw(InputStream is) throws IOException {
ContentHandler.java 23 import java.io.InputStream;
128 void preamble(InputStream is) throws IOException;
137 void epilogue(InputStream is) throws IOException;
166 void body(BodyDescriptor bd, InputStream is) throws IOException;
176 void raw(InputStream is) throws IOException;
  /libcore/luni/src/main/java/java/security/cert/
CertificateFactorySpi.java 20 import java.io.InputStream;
50 public abstract Certificate engineGenerateCertificate(InputStream inStream)
64 engineGenerateCertificates(InputStream inStream) throws CertificateException;
76 public abstract CRL engineGenerateCRL(InputStream inStream)
90 engineGenerateCRLs(InputStream inStream) throws CRLException;
93 * Generates a {@code CertPath} from the provided {@code InputStream}. The
102 public CertPath engineGenerateCertPath(InputStream inStream)
109 * InputStream} in the specified encoding.
122 public CertPath engineGenerateCertPath(InputStream inStream, String encoding)
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
InputStreamTest.java 21 import java.io.InputStream;
29 InputStream in = new MockInputStream();
37 class MockInputStream extends InputStream {
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLStreamedInput.java 21 import java.io.InputStream;
25 * the bytes from another InputStream.
29 private InputStream in;
31 public SSLStreamedInput(InputStream in) {
  /frameworks/base/core/java/android/webkit/
PluginData.java 19 import java.io.InputStream;
40 private InputStream mStream;
73 InputStream stream,
86 * @return An InputStream instance with the plugin content.
93 public InputStream getInputStream() {
  /external/apache-http/src/org/apache/http/
HttpEntity.java 35 import java.io.InputStream;
132 * Creates a new InputStream object of the entity.
134 * to return the same InputStream object more than once.
145 InputStream getContent() throws IOException, IllegalStateException;
  /external/emma/core/java12/com/vladium/jcd/lib/
UDataInputStream.java 13 import java.io.InputStream;
30 public UDataInputStream (final InputStream _in)

Completed in 1874 milliseconds

1 2 3 4 5 6 7 8 91011>>