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

1 2 3 4

  /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];
  /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() {
  /frameworks/base/core/java/com/android/internal/util/
SizedInputStream.java 19 import libcore.io.Streams;
45 return Streams.readSingleByte(this);
  /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
229 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 27 import libcore.io.Streams;
173 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);
161 return Streams.skipByReading(this, byteCount);
ZipInputStream.java 28 import libcore.io.Streams;
142 Streams.skipAll(this);
188 Streams.readFully(in, hdrBuf, 0, EXTHDR);
218 Streams.readFully(in, hdrBuf, 0, 4);
229 Streams.readFully(in, hdrBuf, 0, (LOCHDR - LOCVER));
267 Streams.readFully(in, extraData, 0, extraLength);
280 Streams.readFully(in, stringBytesBuf, 0, byteLength);
InflaterInputStream.java 25 import libcore.io.Streams;
130 return Streams.readSingleByte(this);
213 return Streams.skipByReading(this, byteCount);
GZIPInputStream.java 27 import libcore.io.Streams;
120 * Closes this stream and any underlying streams.
209 Streams.readFully(in, header, 0, header.length);
221 Streams.readFully(in, header, 0, 2);
245 Streams.readFully(in, header, 0, 2);
262 Streams.readFully(in, b, copySize, trailerSize - copySize);
ZipEntry.java 31 import libcore.io.Streams;
382 Streams.readFully(cdStream, cdeHdrBuf, 0, cdeHdrBuf.length);
424 Streams.readFully(cdStream, nameBytes, 0, nameBytes.length);
432 Streams.readFully(cdStream, extra, 0, extraLength);
437 Streams.readFully(cdStream, commentBytes, 0, commentByteCount);
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,
  /libcore/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() {
  /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 25 import libcore.io.Streams;
171 return Streams.skipByReading(this, byteCount);
  /libcore/luni/src/test/java/libcore/io/
StrictLineReaderTest.java 38 String refLine = Streams.readAsciiLine(refStream);
  /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(
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
OutputStreamTesterTest.java 23 import tests.support.Streams;
91 return Streams.streamToBytes(new FileInputStream(file));
191 return Streams.streamToBytes(new ObjectInputStream(
  /frameworks/base/drm/java/android/drm/
DrmOutputStream.java 29 import libcore.io.Streams;
114 Streams.writeSingleByte(this, oneByte);

Completed in 517 milliseconds

1 2 3 4