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

1 2 3 4 5 6 7 891011>>

  /cts/tests/src/android/os/cts/
FileUtils.java 22 import java.io.InputStream;
97 public static boolean copyToFile(InputStream inputStream, File destFile) {
106 while ((bytesRead = inputStream.read(buffer)) >= 0) {
  /cts/tests/src/android/provider/cts/
FileCopyHelper.java 22 import java.io.InputStream;
60 InputStream source = null;
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
HtmlReport.java 21 import java.io.InputStream;
58 InputStream xsl = CtsApiCoverage.class.getResourceAsStream("/api-coverage.xsl");
  /external/apache-http/src/org/apache/http/entity/
BufferedHttpEntity.java 36 import java.io.InputStream;
76 public InputStream getContent() throws IOException {
SerializableEntity.java 37 import java.io.InputStream;
69 public InputStream getContent() throws IOException, IllegalStateException {
StringEntity.java 36 import java.io.InputStream;
81 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
71 public class ContentLengthInputStream extends InputStream {
136 * @see java.io.InputStream#read()
151 * Does standard {@link InputStream#read(byte[], int, int)} behavior, but
185 * @see java.io.InputStream#read(byte[])
197 * @see InputStream#skip(long
    [all...]
  /external/bouncycastle/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)
  /external/emma/core/java12/com/vladium/util/
ByteArrayIStream.java 11 import java.io.InputStream;
24 final class ByteArrayIStream extends InputStream
43 // InputStream:
95 * Differs from the contruct for InputStream.reset() in that this method
  /external/guava/src/com/google/common/io/
LimitInputStream.java 22 import java.io.InputStream;
26 * An InputStream that limits the number of bytes which can be read.
42 public LimitInputStream(InputStream in, long limit) {
  /external/oauth/core/src/main/java/net/oauth/client/
OAuthResponseMessage.java 20 import java.io.InputStream;
55 public InputStream getBodyAsStream() throws IOException
  /external/oauth/core/src/main/java/net/oauth/http/
HttpMessageDecoder.java 20 import java.io.InputStream;
71 InputStream body = in.getBody();
  /frameworks/base/core/java/android/pim/vcard/
VCardParser_V21.java 21 import java.io.InputStream;
101 public void parse(InputStream is, VCardInterpreter interepreter)
  /frameworks/base/core/java/android/speech/srec/
MicrophoneInputStream.java 24 import java.io.InputStream;
31 public final class MicrophoneInputStream extends InputStream {
  /frameworks/base/graphics/java/android/graphics/
BitmapFactory.java 29 import java.io.InputStream;
191 * input data (inputstream, array, etc.) or if it must make a deep copy.
281 InputStream stream = null;
313 * Decode a new Bitmap from an InputStream. This InputStream was obtained from
317 InputStream is, Rect pad, Options opts) {
353 InputStream is = null;
439 public static Bitmap decodeStream(InputStream is, Rect outPadding, Options opts) {
524 public static Bitmap decodeStream(InputStream is) {
547 InputStream is = file.getInputStream()
    [all...]
  /libcore/luni/src/main/java/java/io/
BufferedInputStream.java 21 * Wraps an existing {@link InputStream} and <em>buffers</em> the input.
38 * The buffer containing the current bytes read from the target InputStream.
71 * @param in the {@code InputStream} the buffer reads from.
73 public BufferedInputStream(InputStream in) {
85 * @param in the {@code InputStream} the buffer reads from.
89 public BufferedInputStream(InputStream in, int size) {
100 * plus those available in the source stream, but see {@link InputStream#available} for
108 InputStream localIn = in; // 'in' could be invalidated by close()
129 InputStream localIn = in;
136 private int fillbuf(InputStream localIn, byte[] localBuf
    [all...]
  /libcore/luni/src/main/java/java/util/
PropertyResourceBundle.java 21 import java.io.InputStream;
25 * {@code PropertyResourceBundle} loads resources from an {@code InputStream}. All resources are
39 * properties file from the specified {@code InputStream}.
42 * the {@code InputStream}.
45 * {@code InputStream}.
47 public PropertyResourceBundle(InputStream stream) throws IOException {
  /libcore/luni/src/main/java/java/util/zip/
CheckedInputStream.java 21 import java.io.InputStream;
34 * Constructs a new {@code CheckedInputStream} on {@code InputStream}
46 public CheckedInputStream(InputStream is, Checksum csum) {
  /libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
FixedLengthInputStream.java 20 import java.io.InputStream;
29 public FixedLengthInputStream(InputStream is, CacheRequest cacheRequest,
  /libcore/luni/src/main/java/org/apache/harmony/luni/net/
SocketInputStream.java 21 import java.io.InputStream;
30 class SocketInputStream extends InputStream {
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
DerInputStream.java 26 import java.io.InputStream;
45 public DerInputStream(InputStream in) throws IOException {
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLInputStream.java 21 import java.io.InputStream;
25 * in protocol implementation. It extends an InputStream with
30 public abstract class SSLInputStream extends InputStream {
  /libcore/luni/src/main/java/org/xml/sax/helpers/
XMLReaderFactory.java 11 import java.io.InputStream;
119 InputStream in;
  /libcore/luni/src/test/java/libcore/java/util/zip/
GzipTest.java 22 import java.io.InputStream;
69 InputStream in = new GZIPInputStream(new ByteArrayInputStream(bytes));

Completed in 636 milliseconds

1 2 3 4 5 6 7 891011>>