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

1 2 3

  /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;
MultiStream.cpp 17 int left = 0, mid = _streamIndex, right = Streams.Size();
20 CSubStreamInfo &m = Streams[mid];
35 CSubStreamInfo &s = Streams[_streamIndex];
123 if (_streamIndex >= Streams.Size())
126 RINOK(VolumeCallback->GetVolumeSize(Streams.Size(), &subStream.Size));
127 RINOK(VolumeCallback->GetVolumeStream(Streams.Size(), &subStream.Stream));
129 Streams.Add(subStream);
132 CSubStreamInfo &subStream = Streams[_streamIndex];
  /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);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BEROctetStringParser.java 6 import org.bouncycastle.util.io.Streams;
27 return new BEROctetString(Streams.readAll(getOctetStream()));
DefiniteLengthInputStream.java 7 import org.bouncycastle.util.io.Streams;
98 if ((_remaining -= Streams.readFully(_in, bytes)) != 0)
  /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/luni/src/main/java/java/io/
InputStream.java 21 import libcore.io.Streams;
26 * <p>Most clients will use input streams that read data from the file system
227 return Streams.skipByReading(this, byteCount);
LineNumberInputStream.java 21 import libcore.io.Streams;
229 return Streams.skipByReading(this, byteCount);
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);
FileInputStream.java 29 import libcore.io.Streams;
175 return Streams.readSingleByte(this);
  /libcore/luni/src/main/java/java/util/zip/
CheckedInputStream.java 22 import libcore.io.Streams;
106 return Streams.skipByReading(this, byteCount);
DeflaterInputStream.java 24 import libcore.io.Streams;
105 return Streams.readSingleByte(this);
158 return Streams.skipByReading(this, byteCount);
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);
InflaterInputStream.java 25 import libcore.io.Streams;
130 return Streams.readSingleByte(this);
213 return Streams.skipByReading(this, byteCount);
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);
  /frameworks/base/core/tests/coretests/src/android/content/pm/
MacAuthenticatedInputStreamTest.java 28 import libcore.io.Streams;
75 assertTrue(Arrays.equals(TEST_STRING_1, Streams.readFully(is)));
86 assertTrue(Arrays.equals(TEST_STRING_1, Streams.readFully(is)));
97 assertTrue(Arrays.equals(TEST_STRING_1, Streams.readFully(is)));
  /libcore/luni/src/main/java/javax/crypto/
CipherOutputStream.java 23 import libcore.io.Streams;
75 Streams.writeSingleByte(this, b);
CipherInputStream.java 24 import libcore.io.Streams;
156 return Streams.skipByReading(this, byteCount);
  /libcore/luni/src/test/java/libcore/io/
StrictLineReaderTest.java 38 String refLine = Streams.readAsciiLine(refStream);
  /frameworks/base/drm/java/android/drm/
DrmOutputStream.java 31 import libcore.io.Streams;
103 Streams.writeSingleByte(this, oneByte);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
OutputStreamTesterTest.java 23 import tests.support.Streams;
90 return Streams.streamToBytes(new FileInputStream(file));
189 return Streams.streamToBytes(new ObjectInputStream(
  /frameworks/base/tests/BandwidthTests/src/com/android/tests/bandwidthenforcement/
BandwidthEnforcementTestService.java 37 import libcore.io.Streams;
99 final String content = Streams.readFully(
123 final String content = Streams.readFully(

Completed in 911 milliseconds

1 2 3