Searched refs:byteCount (Results 1 – 3 of 3) sorted by relevance
132 int byteCount = firstLengthByte & 0x7f; in readLongFormLength() local133 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()
142 int byteCount = firstLengthByte & 0x7f; in readLongFormLength() local143 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()
114 int byteCount = msgBytes.length; in writeToReceiver() local115 receiver.addOutput(msgBytes, 0, byteCount); in writeToReceiver()