Searched refs:readLength (Results 1 – 10 of 10) sorted by relevance
/cts/tests/tests/content/src/android/content/res/cts/ |
D | AssetFileDescriptorTest.java | 130 int readLength = 0; in testInputOutputStream() local 132 while ((readByte != FILE_END) && (readLength < FILE_DATA.length)) { in testInputOutputStream() 133 readLength += readByte; in testInputOutputStream() 135 readLength, FILE_DATA.length - readLength); in testInputOutputStream() 137 assertEquals(FILE_DATA.length, readLength); in testInputOutputStream()
|
/cts/tests/tests/security/src/android/security/cts/ |
D | BitmapFactorySecurityTests.java | 43 int readLength; in getResource() local 44 while ((readLength = is.read(buffer)) != -1) { in getResource() 45 output.write(buffer, 0, readLength); in getResource()
|
/cts/tests/tests/location/src/android/location/cts/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()
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
D | BitmapRegionDecoderTest.java | 715 int readLength; in obtainByteArray() local 716 while ((readLength = is.read(buffer)) != -1) { in obtainByteArray() 717 os.write(buffer, 0, readLength); in obtainByteArray() 733 int readLength = 0; in obtainPath() local 734 while ((readLength = is.read(dataBuffer)) != -1) { in obtainPath() 735 fOutput.write(dataBuffer, 0, readLength); in obtainPath()
|
D | TypefaceTest.java | 244 int readLength = 0; in obtainPath() local 245 while ((readLength = is.read(dataBuffer)) != -1) { in obtainPath() 246 fOutput.write(dataBuffer, 0, readLength); in obtainPath()
|
D | BitmapFactoryTest.java | 1018 int readLength = 0; in obtainPath() local 1019 while ((readLength = is.read(dataBuffer)) != -1) { in obtainPath() 1020 fOutput.write(dataBuffer, 0, readLength); in obtainPath()
|