HomeSort by relevance Sort by last modified time
    Searched refs:CBS_get_u16 (Results 1 - 11 of 11) sorted by null

  /external/boringssl/src/ssl/
tls_record.c 183 !CBS_get_u16(&cbs, &version) ||
184 !CBS_get_u16(&cbs, &ciphertext_len)) {
dtls_record.c 187 !CBS_get_u16(&cbs, &version) ||
s3_srvr.c 686 !CBS_get_u16(&v2_client_hello, &version) ||
687 !CBS_get_u16(&v2_client_hello, &cipher_spec_length) ||
688 !CBS_get_u16(&v2_client_hello, &session_id_length) ||
689 !CBS_get_u16(&v2_client_hello, &challenge_length) ||
841 if (!CBS_get_u16(&client_hello, &client_version) ||
    [all...]
t1_lib.c 202 if (!CBS_get_u16(&extensions, &type) ||
226 if (!CBS_get_u16(&extensions, &extension_types[i]) ||
323 if (!CBS_get_u16(&extensions, &type) ||
    [all...]
d1_clnt.c 544 if (!CBS_get_u16(&hello_verify_request, &server_version) ||
s3_clnt.c 771 if (!CBS_get_u16(&server_hello, &server_version) ||
775 !CBS_get_u16(&server_hello, &cipher_suite) ||
    [all...]
ssl_asn1.c 534 !CBS_get_u16(&cipher, &cipher_value) ||
ssl_lib.c     [all...]
  /external/boringssl/src/include/openssl/
bytestring.h 86 /* CBS_get_u16 sets |*out| to the next, big-endian uint16_t from |cbs| and
88 OPENSSL_EXPORT int CBS_get_u16(CBS *cbs, uint16_t *out);
  /external/boringssl/src/crypto/bytestring/
cbs.c 114 int CBS_get_u16(CBS *cbs, uint16_t *out) {
bytestring_test.cc 55 CBS_get_u16(&data, &u16) &&
78 CBS_get_u16(&prefixed, &u16) &&

Completed in 955 milliseconds