HomeSort by relevance Sort by last modified time
    Searched defs:Streams (Results 1 - 25 of 36) sorted by null

1 2

  /external/apache-harmony/support/src/test/java/tests/support/
Streams.java 27 * Utility methods for working with byte and character streams.
29 public class Streams {
30 private Streams() {}
  /libcore/crypto/src/main/java/org/conscrypt/
SSLSocketOutputStream.java 22 import libcore.io.Streams;
38 Streams.writeSingleByte(this, b);
ClientKeyExchange.java 22 import libcore.io.Streams;
113 Streams.readFully(in, exchange_keys);
ServerHello.java 22 import libcore.io.Streams;
90 Streams.readFully(in, random);
CertificateRequest.java 24 import libcore.io.Streams;
92 Streams.readFully(in, certificate_types);
ClientHello.java 23 import libcore.io.Streams;
92 Streams.readFully(in, random);
  /external/lzma/CPP/7zip/Archive/Common/
MultiStream.h 26 CObjectVector<CSubStreamInfo> Streams;
31 for (int i = 0; i < Streams.Size(); i++)
33 CSubStreamInfo &s = Streams[i];
35 total += Streams[i].Size;
66 CObjectVector<CSubStreamInfo> Streams;
  /libcore/luni/src/main/java/javax/crypto/
CipherOutputStream.java 23 import libcore.io.Streams;
75 Streams.writeSingleByte(this, b);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
Streams.java 8 public final class Streams
  /frameworks/base/drm/java/android/drm/
DrmOutputStream.java 31 import libcore.io.Streams;
103 Streams.writeSingleByte(this, oneByte);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1InputStream.java 9 import org.bouncycastle.util.io.Streams;
119 if (Streams.readFully(this, bytes) != bytes.length)
384 Streams.readFully(defIn, buf);
  /external/chromium_org/media/tools/demuxer_bench/
demuxer_bench.cc 56 typedef std::vector<media::DemuxerStream* > Streams;
68 // Returns true when all streams have reached end of stream.
72 const Streams& streams() { return streams_; } function in class:StreamReader
83 Streams streams_;
156 // Ignore streams at EOS.
220 media::DemuxerStream* stream = stream_reader.streams()[i];
  /frameworks/base/core/tests/coretests/src/com/android/internal/net/
NetworkStatsFactoryTest.java 40 import libcore.io.Streams;
139 Streams.copy(in, out);
  /frameworks/base/services/tests/servicestests/src/com/android/server/net/
NetworkStatsCollectionTest.java 43 import libcore.io.Streams;
165 Streams.copy(in, out);
  /libcore/luni/src/main/java/java/io/
DataInputStream.java 23 import libcore.io.Streams;
99 Streams.readFully(in, dst, offset, byteCount);
103 Streams.readFully(in, scratch, 0, SizeOf.INT);
147 Streams.readFully(in, scratch, 0, SizeOf.LONG);
152 Streams.readFully(in, scratch, 0, SizeOf.SHORT);
  /libcore/luni/src/main/java/java/util/zip/
DeflaterOutputStream.java 24 import libcore.io.Streams;
124 * all underlying streams. This stream can no longer be used after close()
161 Streams.writeSingleByte(this, i);
186 * <p>For deflater output streams constructed with the {@code syncFlush} parameter set to true,
ZipInputStream.java 29 import libcore.io.Streams;
147 Streams.skipAll(this);
193 Streams.readFully(in, hdrBuf, 0, EXTHDR);
223 Streams.readFully(in, hdrBuf, 0, 4);
234 Streams.readFully(in, hdrBuf, 0, (LOCHDR - LOCVER));
266 Streams.readFully(in, nameBuf, 0, nameLength);
278 Streams.readFully(in, extraData, 0, extraLength);
ZipEntry.java 28 import libcore.io.Streams;
353 Streams.readFully(cdStream, cdeHdrBuf, 0, cdeHdrBuf.length);
388 Streams.readFully(cdStream, nameBytes, 0, nameBytes.length);
396 Streams.readFully(cdStream, extra, 0, extraLength);
403 Streams.readFully(cdStream, commentBytes, 0, commentByteCount);
  /libcore/luni/src/main/java/libcore/io/
Streams.java 29 public final class Streams {
32 private Streams() {}
142 * the same time that another stream is using it. Otherwise streams that use
145 * streams may call other streams in their skip() method, also clobbering the
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtcsessiondescriptionfactory.cc 50 typedef cricket::MediaSessionOptions::Streams Streams;
60 // Checks if each Stream within the |streams| has unique id.
61 static bool ValidStreams(const Streams& streams) {
62 Streams sorted_streams = streams;
64 Streams::iterator it =
193 if (!ValidStreams(options.streams)) {
194 error += " called with invalid media streams."
    [all...]
  /libcore/luni/src/main/java/java/util/jar/
JarFile.java 29 import libcore.io.Streams;
139 return Streams.skipByReading(this, byteCount);
292 verifier.addMetaEntry(manifestEntry.getName(), Streams.readFully(is));
344 verifier.addMetaEntry(entryName, Streams.readFully(is));
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1PRNG_SecureRandomImpl.java 31 import libcore.io.Streams;
544 Streams.readFully(ois, nextBytes, nextBIndex, HASHBYTES_TO_USE - nextBIndex);
556 Streams.readFully(devURandom, result, 0, byteCount);
  /frameworks/base/core/java/com/android/internal/util/
FileRotator.java 34 import libcore.io.Streams;
163 Streams.copy(is, zos);
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
X509CertFactoryImpl.java 40 import libcore.io.Streams;
647 Streams.readFully(inStream, encoding);
718 Streams.readFully(inStream, encoding);
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
Update.cpp 64 CObjectVector<CSubStreamInfo> Streams;
93 for (int i = 0; i < Streams.Size(); i++)
95 CSubStreamInfo &s = Streams[i];
112 if (_streamIndex >= Streams.Size())
134 Streams.Add(subStream);
137 CSubStreamInfo &subStream = Streams[_streamIndex];
212 while (i < Streams.Size())
214 CSubStreamInfo &subStream = Streams[i++];
223 while (i < Streams.Size())
226 CSubStreamInfo &subStream = Streams.Back();
    [all...]

Completed in 1182 milliseconds

1 2