Home
last modified time | relevance | path

Searched refs:byteCount (Results 1 – 3 of 3) sorted by relevance

/tools/apksig/src/main/java/com/android/apksig/internal/asn1/ber/
DByteBufferBerDataValueReader.java132 int byteCount = firstLengthByte & 0x7f; in readLongFormLength() local
133 if (byteCount > 4) { in readLongFormLength()
134 throw new BerDataValueFormatException("Length too large: " + byteCount + " bytes"); in readLongFormLength()
137 for (int i = 0; i < byteCount; i++) { in readLongFormLength()
DInputStreamBerDataValueReader.java142 int byteCount = firstLengthByte & 0x7f; in readLongFormLength() local
143 if (byteCount > 4) { in readLongFormLength()
144 throw new BerDataValueFormatException("Length too large: " + byteCount + " bytes"); in readLongFormLength()
147 for (int i = 0; i < byteCount; i++) { in readLongFormLength()
/tools/tradefederation/core/src/com/android/tradefed/targetprep/
DNativeLeakCollector.java114 int byteCount = msgBytes.length; in writeToReceiver() local
115 receiver.addOutput(msgBytes, 0, byteCount); in writeToReceiver()