Searched defs:npnLength (Results 1 - 1 of 1) sorted by relevance

/external/conscrypt/src/main/native/
H A Dorg_conscrypt_NativeCrypto.cpp8087 unsigned npnLength; local
8088 SSL_get0_next_proto_negotiated(ssl, reinterpret_cast<const unsigned char**>(&npn), &npnLength);
8089 if (npnLength == 0) {
8092 jbyteArray result = env->NewByteArray(npnLength);
8094 env->SetByteArrayRegion(result, 0, npnLength, npn);
8135 unsigned npnLength; local
8136 SSL_get0_alpn_selected(ssl, reinterpret_cast<const unsigned char**>(&npn), &npnLength);
8137 if (npnLength == 0) {
8140 jbyteArray result = env->NewByteArray(npnLength);
8142 env->SetByteArrayRegion(result, 0, npnLength, np
[all...]

Completed in 126 milliseconds