Searched refs:readLength (Results 1 – 11 of 11) sorted by relevance
/cts/tests/tests/content/src/android/content/res/cts/ |
D | AssetFileDescriptorTest.java | 145 int readLength = 0; in testInputOutputStream() local 147 while ((readByte != FILE_END) && (readLength < FILE_DATA.length)) { in testInputOutputStream() 148 readLength += readByte; in testInputOutputStream() 150 readLength, FILE_DATA.length - readLength); in testInputOutputStream() 152 assertEquals(FILE_DATA.length, readLength); in testInputOutputStream()
|
/cts/tests/tests/mediaparser/src/android/media/mediaparser/cts/ |
D | MockMediaParserInputReader.java | 44 public int read(byte[] buffer, int offset, int readLength) throws IOException { in read() argument 45 return mFakeExtractorInput.read(buffer, offset, readLength); in read()
|
/cts/tests/tests/security/src/android/security/cts/ |
D | BitmapFactorySecurityTests.java | 50 int readLength; in getResource() local 51 while ((readLength = is.read(buffer)) != -1) { in getResource() 52 output.write(buffer, 0, readLength); in getResource()
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
D | Utils.java | 104 int readLength = 0; in obtainFile() local 105 while ((readLength = is.read(dataBuffer)) != -1) { in obtainFile() 106 fOutput.write(dataBuffer, 0, readLength); in obtainFile()
|
D | BitmapRegionDecoderTest.java | 858 int readLength; in obtainByteArray() local 859 while ((readLength = is.read(buffer)) != -1) { in obtainByteArray() 860 os.write(buffer, 0, readLength); in obtainByteArray() 876 int readLength = 0; in obtainPath() local 877 while ((readLength = is.read(dataBuffer)) != -1) { in obtainPath() 878 fOutput.write(dataBuffer, 0, readLength); in obtainPath()
|
D | TypefaceTest.java | 288 int readLength = 0; in obtainPath() local 289 while ((readLength = is.read(dataBuffer)) != -1) { in obtainPath() 290 fOutput.write(dataBuffer, 0, readLength); in obtainPath()
|
/cts/tests/location/location_gnss/src/android/location/cts/gnss/asn1/base/ |
D | Asn1Object.java | 135 int valueLen = Asn1Tag.readLength(buf); in decodeBer() 147 int innerValueLen = Asn1Tag.readLength(buf); in decodeBer()
|
D | Asn1SequenceOf.java | 85 int valueLength = Asn1Tag.readLength(buf); in decodeBerValue() 92 valueLength = Asn1Tag.readLength(buf); in decodeBerValue()
|
D | Asn1Choice.java | 166 int valueLen = Asn1Tag.readLength(buf); in decodeBerValue() 186 int len = Asn1Tag.readLength(buf); in decodeBer()
|
D | Asn1Tag.java | 155 public static int readLength(ByteBuffer buf) { in readLength() method in Asn1Tag
|
D | Asn1Sequence.java | 110 int valueLength = Asn1Tag.readLength(buf); in decodeBerValue()
|