Searched refs:CBB_init_fixed (Results 1 - 8 of 8) sorted by relevance

/external/boringssl/include/openssl/
H A Dbytestring.h256 * initialised with |CBB_init| or |CBB_init_fixed| before use, but it is safe to
266 /* CBB_init_fixed initialises |cbb| to write to |len| bytes at |buf|. Since
269 OPENSSL_EXPORT int CBB_init_fixed(CBB *cbb, uint8_t *buf, size_t len);
276 * with |CBB_init| or |CBB_init_fixed|, or a |CBB| set to the zero state with
283 * |CBB_init_fixed|, must call |OPENSSL_free| when done.
286 * |CBB_init| or |CBB_init_fixed|. It returns one on success and zero on
/external/boringssl/src/include/openssl/
H A Dbytestring.h256 * initialised with |CBB_init| or |CBB_init_fixed| before use, but it is safe to
266 /* CBB_init_fixed initialises |cbb| to write to |len| bytes at |buf|. Since
269 OPENSSL_EXPORT int CBB_init_fixed(CBB *cbb, uint8_t *buf, size_t len);
276 * with |CBB_init| or |CBB_init_fixed|, or a |CBB| set to the zero state with
283 * |CBB_init_fixed|, must call |OPENSSL_free| when done.
286 * |CBB_init| or |CBB_init_fixed|. It returns one on success and zero on
/external/boringssl/src/crypto/bytestring/
H A Dbytestring_test.cc301 if (!CBB_init_fixed(&cbb, NULL, 0) ||
309 if (!CBB_init_fixed(&cbb, buf, 1) ||
719 if (!CBB_init_fixed(cbb.get(), buf, sizeof(buf)) ||
H A Dcbb.c62 int CBB_init_fixed(CBB *cbb, uint8_t *buf, size_t len) { function
/external/boringssl/src/ssl/
H A Ds3_clnt.c702 if (!CBB_init_fixed(&cbb, ssl_handshake_start(ssl),
1583 if (!CBB_init_fixed(&cbb, ssl_handshake_start(ssl),
1784 if (!CBB_init_fixed(&cbb, ssl_handshake_start(ssl),
1975 if (!CBB_init_fixed(&cbb, ssl_handshake_start(ssl),
2049 if (!CBB_init_fixed(&cbb, ssl_handshake_start(ssl),
H A Ds3_srvr.c713 if (!CBB_init_fixed(&client_hello, (uint8_t *)ssl->init_buf->data,
1145 if (!CBB_init_fixed(&cbb, ssl_handshake_start(ssl),
1172 if (!CBB_init_fixed(&out, ssl_handshake_start(ssl),
1210 if (!CBB_init_fixed(&cbb, ssl_handshake_start(ssl),
H A Dd1_both.c372 if (!CBB_init_fixed(&cbb, buf, ssl->d1->mtu) ||
628 !CBB_init_fixed(&cbb, (uint8_t *)ssl->init_buf->data,
/external/boringssl/src/crypto/ecdsa/
H A Decdsa.c474 if (!CBB_init_fixed(&cbb, sig, ECDSA_size(eckey)) ||

Completed in 1102 milliseconds