HomeSort by relevance Sort by last modified time
    Searched refs:LimitedLengthInputStream (Results 1 - 3 of 3) sorted by null

  /frameworks/base/core/tests/coretests/src/android/content/pm/
LimitedLengthInputStreamTest.java 42 InputStream is = new LimitedLengthInputStream(mTestStream1, -1, TEST_STRING1.length);
52 InputStream is = new LimitedLengthInputStream(mTestStream1, 0, -1);
62 InputStream is = new LimitedLengthInputStream(null, 0, 1);
72 InputStream is = new LimitedLengthInputStream(mTestStream1, Long.MAX_VALUE - 1,
88 InputStream is = new LimitedLengthInputStream(mTestStream1, offset, length);
123 InputStream is = new LimitedLengthInputStream(mTestStream1, 0, TEST_STRING1.length + 10);
138 InputStream is = new LimitedLengthInputStream(mTestStream1, offset, length);
168 InputStream is = new LimitedLengthInputStream(mTestStream1, offset, length);
  /frameworks/base/core/java/android/content/pm/
LimitedLengthInputStream.java 15 public class LimitedLengthInputStream extends FilterInputStream {
32 public LimitedLengthInputStream(InputStream in, long offset, long length) throws IOException {
  /frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
DefaultContainerService.java 23 import android.content.pm.LimitedLengthInputStream;
629 * wrap this in a LimitedLengthInputStream.
632 inStream = new LimitedLengthInputStream(inStream, furtherOffset, end - encStart);
643 inStream = new LimitedLengthInputStream(inStream, encStart, end - encStart);
    [all...]

Completed in 74 milliseconds