Home
last modified time | relevance | path

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

/external/conscrypt/common/src/main/java/org/conscrypt/
DSSLUtils.java354 int protocolLength = protocols[i].length(); in toLengthPrefixedList() local
358 if (protocolLength == 0 || protocolLength > MAX_PROTOCOL_LENGTH) { in toLengthPrefixedList()
360 + protocolLength + "): " + protocols[i]); in toLengthPrefixedList()
364 length += 1 + protocolLength; in toLengthPrefixedList()
370 int protocolLength = protocol.length(); in toLengthPrefixedList() local
373 data[dataIndex++] = (byte) protocolLength; in toLengthPrefixedList()
374 for (int ci = 0; ci < protocolLength; ++ci) { in toLengthPrefixedList()