HomeSort by relevance Sort by last modified time
    Searched full:cbb_init (Results 1 - 25 of 30) sorted by null

1 2

  /external/boringssl/src/crypto/bytestring/
bytestring_test.cc 296 if (!CBB_init(&cbb, 100)) {
301 if (!CBB_init(&cbb, 0)) {
357 if (!CBB_init(&cbb, 16)) {
377 if (!CBB_init(&cbb, 0) ||
408 if (!CBB_init(cbb.get(), 0) ||
459 if (!CBB_init(&cbb, 0)) {
502 if (!CBB_init(&cbb, 0)) {
520 if (!CBB_init(&cbb, 0)) {
537 if (!CBB_init(&cbb, 0)) {
554 if (!CBB_init(&cbb, 0))
    [all...]
cbb.c 29 static int cbb_init(CBB *cbb, uint8_t *buf, size_t cap) { function
49 int CBB_init(CBB *cbb, size_t initial_capacity) {
57 if (!cbb_init(cbb, buf, initial_capacity)) {
68 if (!cbb_init(cbb, buf, len)) {
internal.h 62 * with |CBB_init|. If |outp| is not NULL then the result is written to |*outp|
ber.c 211 if (!CBB_init(&cbb, CBS_len(in)) ||
238 if (!CBB_init(&result, CBS_len(in)) ||
  /external/boringssl/src/crypto/dsa/
dsa_asn1.c 249 if (!CBB_init(&cbb, 0) ||
277 if (!CBB_init(&cbb, 0) ||
305 if (!CBB_init(&cbb, 0) ||
333 if (!CBB_init(&cbb, 0) ||
  /external/boringssl/src/include/openssl/
bytestring.h 274 * |CBB_init|. Several |CBB| objects can point at the same buffer when a
312 * initialised with |CBB_init| or |CBB_init_fixed| before use, but it is safe to
313 * call |CBB_cleanup| without a successful |CBB_init|. This may be used for more
317 /* CBB_init initialises |cbb| with |initial_capacity|. Since a |CBB| grows as
320 OPENSSL_EXPORT int CBB_init(CBB *cbb, size_t initial_capacity);
332 * with |CBB_init| or |CBB_init_fixed|, or a |CBB| set to the zero state with
342 * |CBB_init| or |CBB_init_fixed|. It returns one on success and zero on
  /external/boringssl/src/crypto/rsa/
rsa_asn1.c 162 if (!CBB_init(&cbb, 0) ||
366 if (!CBB_init(&cbb, 0) ||
396 if (!CBB_init(&cbb, 0) ||
424 if (!CBB_init(&cbb, 0) ||
  /external/boringssl/src/crypto/ecdsa/
ecdsa_asn1.c 157 if (!CBB_init(&cbb, 0) ||
221 if (!CBB_init(&cbb, 0) ||
  /external/boringssl/src/crypto/dh/
dh_asn1.c 154 if (!CBB_init(&cbb, 0) ||
dh_test.cc 572 if (!CBB_init(cbb.get(), 0) ||
615 if (!CBB_init(cbb.get(), 0) ||
  /external/boringssl/src/crypto/ec/
ec_asn1.c 437 if (!CBB_init(&cbb, 0) ||
480 if (!CBB_init(&cbb, 0) ||
ec_test.cc 121 if (!CBB_init(cbb.get(), 0) ||
  /external/boringssl/src/crypto/evp/
evp_test.cc 164 if (!CBB_init(cbb.get(), 0) ||
  /external/boringssl/src/crypto/x509/
x_pubkey.c 100 if (!CBB_init(&cbb, 0) ||
pkcs7_test.c     [all...]
  /external/boringssl/src/ssl/
tls13_enc.c 84 if (!CBB_init(&cbb, 2 + 1 + strlen(kTLS13LabelVersion) + label_len + 1 +
tls13_both.c 122 if (!CBB_init(&cbb, 64 + 33 + 1 + 2 * EVP_MAX_MD_SIZE)) {
handshake_server.c     [all...]
s3_both.c 235 if (!CBB_init(cbb, 64) ||
ssl_asn1.c 202 if (!CBB_init(&cbb, 0) ||
  /external/boringssl/src/crypto/pkcs8/
pkcs8_x509.c 127 if (!CBB_init(&cbb, 0) ||
206 if (!CBB_init(&cbb, 128) ||
pkcs8.c 471 if (!CBB_init(&plaintext_cbb, 128) ||
  /external/boringssl/src/crypto/obj/
obj.c 483 if (!CBB_init(&cbb, 32)) {
  /external/boringssl/src/crypto/bn/
convert.c 427 if (!CBB_init(&cbb, 16) ||
bn_test.cc     [all...]

Completed in 454 milliseconds

1 2