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

1 23 4 5 6 7 8 91011>>

  /external/protobuf/java/src/main/java/com/google/protobuf/
MessageLite.java 37 import java.io.InputStream;
123 * that size on the receiving end (e.g. by wrapping the InputStream in one
133 * data yourself. Use {@link Builder#mergeDelimitedFrom(InputStream)} (or
134 * the static method {@code YourMessageType.parseDelimitedFrom(InputStream)})
299 * and {@link #mergeDelimitedFrom(InputStream)} to read it.
303 Builder mergeFrom(InputStream input) throws IOException;
310 Builder mergeFrom(InputStream input,
315 * Like {@link #mergeFrom(InputStream)}, but does not read until EOF.
325 boolean mergeDelimitedFrom(InputStream input)
329 * Like {@link #mergeDelimitedFrom(InputStream)} but supporting extensions
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/
CloseShieldInputStream.java 22 import java.io.InputStream;
26 * InputStream that shields its underlying input stream from
32 public class CloseShieldInputStream extends InputStream {
35 * Underlying InputStream
37 private InputStream is;
39 public CloseShieldInputStream(InputStream is) {
43 public InputStream getUnderlyingStream() {
48 * @see java.io.InputStream#read()
56 * @see java.io.InputStream#available()
65 * Set the underlying InputStream to null
    [all...]
  /external/guava/src/com/google/common/io/
ByteStreams.java 29 import java.io.InputStream;
110 public static long copy(InputSupplier<? extends InputStream> from,
113 InputStream in = from.getInput();
138 public static long copy(InputSupplier<? extends InputStream> from,
141 InputStream in = from.getInput();
160 public static long copy(InputStream from, OutputStream to)
206 public static byte[] toByteArray(InputStream in) throws IOException {
213 * Returns the data from a {@link InputStream} factory as a byte array.
219 InputSupplier<? extends InputStream> supplier) throws IOException {
221 InputStream in = supplier.getInput()
    [all...]
FileBackedOutputStream.java 27 import java.io.InputStream;
43 private final InputSupplier<InputStream> supplier;
94 supplier = new InputSupplier<InputStream>() {
95 public InputStream getInput() throws IOException {
108 supplier = new InputSupplier<InputStream>() {
109 public InputStream getInput() throws IOException {
120 public InputSupplier<InputStream> getSupplier() {
124 private synchronized InputStream openStream() throws IOException {
  /libcore/luni/src/test/java/tests/security/cert/
CertificateFactory4Test.java 32 import java.io.InputStream;
60 * @tests java.security.cert.CertificateFactory#generateCertificate(java.io.InputStream)
66 args = {java.io.InputStream.class}
71 // java.security.cert.CertificateFactory.generateCertificate(java.io.InputStream)
85 InputStream is = Support_Resources.getResourceStream("hyts_badpem.cer");
97 * @tests java.security.cert.CertificateFactory#generateCertificates(java.io.InputStream)
103 args = {java.io.InputStream.class}
111 InputStream is = certUrl.openStream();
126 * @tests java.security.cert.CertificateFactory#generateCRL(java.io.InputStream)
132 args = {java.io.InputStream.class
    [all...]
  /cts/tools/signature-tools/src/signature/io/html/
TemplateStore.java 19 import java.io.InputStream;
32 InputStream modelStream = TemplateStore.class.getClassLoader()
38 InputStream stream = TemplateStore.class.getClassLoader()
  /external/apache-http/src/org/apache/http/entity/
FileEntity.java 37 import java.io.InputStream;
70 public InputStream getContent() throws IOException {
78 InputStream instream = new FileInputStream(this.file);
ByteArrayEntity.java 36 import java.io.InputStream;
68 public InputStream getContent() {
EntityTemplate.java 35 import java.io.InputStream;
64 public InputStream getContent() {
  /libcore/luni/src/main/java/java/io/
FilterInputStream.java 21 * Wraps an existing {@link InputStream} and performs some transformation on
30 public class FilterInputStream extends InputStream {
35 protected volatile InputStream in;
47 protected FilterInputStream(InputStream in) {
  /libcore/luni/src/main/java/libcore/base/
Streams.java 20 import java.io.InputStream;
28 public static void skipAll(InputStream in) throws IOException {
45 public static long skipByReading(InputStream in, long byteCount) throws IOException {
  /packages/apps/Email/src/org/apache/commons/io/input/
TeeInputStream.java 20 import java.io.InputStream;
24 * InputStream proxy that transparently writes a copy of all bytes read
52 * Creates a TeeInputStream that proxies the given {@link InputStream}
59 public TeeInputStream(InputStream input, OutputStream branch) {
64 * Creates a TeeInputStream that proxies the given {@link InputStream}
75 InputStream input, OutputStream branch, boolean closeBranch) {
ClassLoaderObjectInputStream.java 20 import java.io.InputStream;
44 * @param inputStream the InputStream to work on
49 ClassLoader classLoader, InputStream inputStream)
51 super(inputStream);
  /cts/tools/dex-tools/test/dex/reader/util/
JavaSource.java 20 import java.io.InputStream;
53 public InputStream openInputStream() {
MemoryByteCode.java 20 import java.io.InputStream;
53 public InputStream openInputStream() {
  /external/apache-http/src/org/apache/http/impl/io/
IdentityInputStream.java 35 import java.io.InputStream;
48 public class IdentityInputStream extends InputStream {
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
BEROctetStringParser.java 5 import java.io.InputStream;
28 public InputStream getOctetStream()
  /external/jdiff/src/jdiff/
StreamReader.java 14 InputStream is_;
16 /** Constructor which takes an InputStream. */
17 StreamReader(InputStream is) {
  /frameworks/base/core/java/android/bluetooth/
BluetoothInputStream.java 20 import java.io.InputStream;
29 /*package*/ final class BluetoothInputStream extends InputStream {
  /frameworks/base/obex/javax/obex/
Operation.java 38 import java.io.InputStream;
114 * close on the <code>InputStream</code>. No further data may be read at this
170 InputStream openInputStream() throws IOException;
  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSInput.java 83 public java.io.InputStream getByteStream();
92 public void setByteStream(java.io.InputStream byteStream);
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapSimpleString.java 22 import java.io.InputStream;
46 public InputStream getAsStream() {
  /packages/apps/Email/src/com/android/exchange/adapter/
AccountSyncAdapter.java 7 import java.io.InputStream;
25 public boolean parse(InputStream is) throws IOException {
  /libcore/luni/src/main/java/javax/xml/datatype/
SecuritySupport.java 25 import java.io.InputStream;
79 static InputStream getResourceAsStream(final ClassLoader cl,
82 return (InputStream)
85 InputStream ris;
  /libcore/luni/src/main/java/javax/xml/parsers/
SecuritySupport.java 25 import java.io.InputStream;
79 static InputStream getResourceAsStream(final ClassLoader cl,
82 return (InputStream)
85 InputStream ris;

Completed in 1137 milliseconds

1 23 4 5 6 7 8 91011>>