HomeSort by relevance Sort by last modified time
    Searched refs:InputStream (Results 126 - 150 of 2666) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLX509CertificateFactory.java 20 import java.io.InputStream;
71 public T generateItem(InputStream inStream) throws ParsingException {
125 public Collection<? extends T> generateItems(InputStream inStream)
210 protected abstract T fromX509PemInputStream(InputStream pbis) throws ParsingException;
212 protected abstract T fromX509DerInputStream(InputStream pbis) throws ParsingException;
214 protected abstract List<? extends T> fromPkcs7PemInputStream(InputStream is)
217 protected abstract List<? extends T> fromPkcs7DerInputStream(InputStream is)
224 public OpenSSLX509Certificate fromX509PemInputStream(InputStream is)
230 public OpenSSLX509Certificate fromX509DerInputStream(InputStream is)
237 fromPkcs7PemInputStream(InputStream is) throws ParsingException
    [all...]
  /external/apache-http/src/org/apache/http/conn/
BasicManagedEntity.java 34 import java.io.InputStream;
103 public InputStream getContent() throws IOException {
159 public boolean eofDetected(InputStream wrapped)
177 public boolean streamClosed(InputStream wrapped)
195 public boolean streamAbort(InputStream wrapped)
  /external/apache-http/src/org/apache/http/entity/
InputStreamEntity.java 35 import java.io.InputStream;
39 * A streamed entity obtaining content from an {@link InputStream InputStream}.
56 private final InputStream content;
60 public InputStreamEntity(final InputStream instream, long length) {
77 public InputStream getContent() throws IOException {
85 InputStream instream = this.content;
FileEntity.java 37 import java.io.InputStream;
75 public InputStream getContent() throws IOException {
83 InputStream instream = new FileInputStream(this.file);
  /external/glide/library/src/main/java/com/bumptech/glide/load/model/stream/
HttpUrlGlideUrlLoader.java 13 import java.io.InputStream;
17 * (http/https URLS) into {@link java.io.InputStream} data.
19 public class HttpUrlGlideUrlLoader implements ModelLoader<GlideUrl, InputStream> {
26 public static class Factory implements ModelLoaderFactory<GlideUrl, InputStream> {
30 public ModelLoader<GlideUrl, InputStream> build(Context context, GenericLoaderFactory factories) {
49 public DataFetcher<InputStream> getResourceFetcher(GlideUrl model, int width, int height) {
BaseGlideUrlLoader.java 12 import java.io.InputStream;
16 * in to {@link java.io.InputStream} data.
21 private final ModelLoader<GlideUrl, InputStream> concreteLoader;
29 this(Glide.buildModelLoader(GlideUrl.class, InputStream.class, context), modelCache);
32 public BaseGlideUrlLoader(ModelLoader<GlideUrl, InputStream> concreteLoader) {
36 public BaseGlideUrlLoader(ModelLoader<GlideUrl, InputStream> concreteLoader, ModelCache<T, GlideUrl> modelCache) {
42 public DataFetcher<InputStream> getResourceFetcher(T model, int width, int height) {
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
MessageLite.java 37 import java.io.InputStream;
115 * that size on the receiving end (e.g. by wrapping the InputStream in one
125 * data yourself. Use {@link Builder#mergeDelimitedFrom(InputStream)} (or
126 * the static method {@code YourMessageType.parseDelimitedFrom(InputStream)})
280 * and {@link #mergeDelimitedFrom(InputStream)} to read it.
286 Builder mergeFrom(InputStream input) throws IOException;
295 Builder mergeFrom(InputStream input,
321 * Like {@link #mergeFrom(InputStream)}, but does not read until EOF.
331 boolean mergeDelimitedFrom(InputStream input)
335 * Like {@link #mergeDelimitedFrom(InputStream)} but supporting extensions
    [all...]
  /packages/apps/UnifiedEmail/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 nul
    [all...]
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Compress.java 20 import java.io.InputStream;
34 public static InputStream getUncompressedStream(final InputStream in) throws IOException {
58 final InputStream input = getFileInputStreamOrStdIn(inFilename);
87 final InputStream uncompressedInput = getUncompressedStream(
  /cts/common/util/src/com/android/compatibility/common/util/
FileUtil.java 24 import java.io.InputStream;
57 public static void writeToFile(InputStream input, File destFile) throws IOException {
58 InputStream origStream = null;
  /cts/tools/vm-tests-tf/src/util/build/
CharactersStreamSucker.java 21 import java.io.InputStream;
28 * Class that continuously read an {@link InputStream} and optionally could print the input in a
42 @Nonnull InputStream is, @Nonnull PrintStream os, boolean toBeClose) {
48 public CharactersStreamSucker(@Nonnull InputStream is, @Nonnull PrintStream os) {
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
RecipientOperator.java 3 import java.io.InputStream;
27 public InputStream getInputStream(InputStream dataIn)
  /external/glide/library/src/main/java/com/bumptech/glide/load/model/
ImageVideoWrapperEncoder.java 7 import java.io.InputStream;
12 * writing data from the wrapper's {@link java.io.InputStream} and falling back to the wrapper's
13 * {@link android.os.ParcelFileDescriptor} if the {@link java.io.InputStream} isn't available.
16 private final Encoder<InputStream> streamEncoder;
20 public ImageVideoWrapperEncoder(Encoder<InputStream> streamEncoder,
StreamEncoder.java 9 import java.io.InputStream;
13 * An {@link com.bumptech.glide.load.Encoder} that can write an {@link java.io.InputStream} to disk.
15 public class StreamEncoder implements Encoder<InputStream> {
19 public boolean encode(InputStream data, OutputStream os) {
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/
GifBitmapWrapperStreamResourceDecoder.java 8 import java.io.InputStream;
12 * {@link com.bumptech.glide.load.resource.gifbitmap.GifBitmapWrapper} from {@link java.io.InputStream} data.
14 public class GifBitmapWrapperStreamResourceDecoder implements ResourceDecoder<InputStream, GifBitmapWrapper> {
23 public Resource<GifBitmapWrapper> decode(InputStream source, int width, int height) throws IOException {
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/
InputStreamSourceFileLocator.java 15 import java.io.InputStream;
21 * based on {@link InputStream}s. It handles the encoding and tab width.
47 final InputStream in;
78 protected abstract InputStream getSourceStream(String path)
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
DeltaOptions.java 12 import java.io.InputStream;
86 public InputStream getInputStream(InputStream in) {
  /frameworks/base/obex/javax/obex/
ObexPacket.java 21 import java.io.InputStream;
34 * Create a complete OBEX packet by reading data from an InputStream.
39 public static ObexPacket read(InputStream is) throws IOException {
51 public static ObexPacket read(int headerId, InputStream is) throws IOException {
  /libcore/ojluni/src/main/java/java/io/
FilterInputStream.java 35 * <code>InputStream</code> with versions that
46 class FilterInputStream extends InputStream {
50 protected volatile InputStream in;
61 protected FilterInputStream(InputStream in) {
239 * @see java.io.InputStream#mark(int)
240 * @see java.io.InputStream#reset()
  /packages/apps/UnifiedEmail/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) {
  /tools/tradefederation/core/tests/src/com/android/tradefed/result/
SnapshotInputStreamSourceTest.java 22 import java.io.InputStream;
29 private InputStream mInputStream = null;
52 File createBackingFile(InputStream stream) {
  /external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/
PairingContext.java 22 import java.io.InputStream;
44 * An {@link InputStream} for the peer in the protocol.
46 private InputStream mPeerInputStream;
63 * @param peerInputStream an {@link InputStream} from the peer
68 Certificate peerCertificate, InputStream peerInputStream,
90 InputStream input = socket.getInputStream();
119 public void setPeerInputStream(InputStream peerInputStream) {
123 public InputStream getPeerInputStream() {
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/
ISubPlan.java 22 import java.io.InputStream;
34 * @param xmlInputStream the {@link InputStream} containing subplan XML
36 public void parse(InputStream xmlInputStream) throws ParseException;
  /cts/tests/tests/security/src/android/security/cts/
DecodeTest.java 24 import java.io.InputStream;
37 InputStream exploitImage = mContext.getResources().openRawResource(R.raw.bug_34778578);
SkiaICORecursiveDecodingTest.java 24 import java.io.InputStream;
43 InputStream exploitImage = mContext.getResources().openRawResource(resId);

Completed in 1470 milliseconds

1 2 3 4 56 7 8 91011>>