Searched refs:CBB (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dbytestring.h31 * A "CBB" (CRYPTO ByteBuilder) is a memory buffer that grows as needed and
165 * |CBB| objects allow one to build length-prefixed serialisations. A |CBB|
167 * |CBB_init|. Several |CBB| objects can point at the same buffer when a
168 * length-prefix is pending, however only a single |CBB| can be 'current' at
170 * the new |CBB| points at the same buffer as the original. But if the original
171 * |CBB| is used then the length prefix is written out and the new |CBB| must
174 * If one needs to force a length prefix to be written out because a |CBB| is
190 /* child points to a child CBB i
[all...]
H A Dobj.h133 OPENSSL_EXPORT int OBJ_nid2cbb(CBB *out, int nid);
H A Dbase.h171 typedef struct cbb_st CBB; typedef in typeref:struct:cbb_st
H A Dx509.h1182 CBB *out, const STACK_OF(X509) *certs);
/external/chromium_org/third_party/boringssl/src/crypto/bytestring/
H A Dcbb.c22 static int cbb_init(CBB *cbb, uint8_t *buf, size_t cap) {
36 memset(cbb, 0, sizeof(CBB));
42 int CBB_init(CBB *cbb, size_t initial_capacity) {
53 int CBB_init_fixed(CBB *cbb, uint8_t *buf, size_t len) {
62 void CBB_cleanup(CBB *cbb) {
132 int CBB_finish(CBB *cbb, uint8_t **out_data, size_t *out_len) {
142 /* |out_data| and |out_len| can only be NULL if the CBB is fixed. */
160 int CBB_flush(CBB *cbb) {
242 static int cbb_add_length_prefixed(CBB *cbb, CBB *out_content
[all...]
H A Dber.c87 static int cbs_convert_ber(CBS *in, CBB *out, char squash_header,
97 CBB *out_contents, out_contents_storage;
193 CBB cbb;
H A Dbytestring_test.c156 CBB cbb;
178 CBB cbb;
205 CBB cbb, child;
227 CBB cbb, contents, inner_contents, inner_inner_contents;
253 CBB cbb, child, contents;
273 fprintf(stderr, "CBB operation on invalid CBB did not fail.\n");
292 CBB cbb, contents, inner_contents;
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dpkcs7.c119 int PKCS7_bundle_certificates(CBB *out, const STACK_OF(X509) *certs) {
120 CBB outer_seq, wrapped_seq, seq, version_bytes, digest_algos_set,
H A Dpkcs7_test.c335 CBB cbb;
/external/llvm/lib/Transforms/Utils/
H A DCloneFunction.cpp124 BasicBlock *CBB = CloneBasicBlock(&BB, VMap, NameSuffix, NewFunc, CodeInfo); local
127 VMap[&BB] = CBB;
138 VMap[OldBBAddr] = BlockAddress::get(NewFunc, CBB);
142 if (ReturnInst *RI = dyn_cast<ReturnInst>(CBB->getTerminator()))
/external/chromium_org/third_party/boringssl/src/crypto/obj/
H A Dobj.c304 OPENSSL_EXPORT int OBJ_nid2cbb(CBB *out, int nid) {
306 CBB oid;
/external/chromium_org/third_party/boringssl/src/ssl/
H A Ds23_srvr.c401 CBB client_hello, hello_body, cipher_suites;
H A Dssl_lib.c3105 static int cbb_add_hex(CBB *cbb, const uint8_t *in, size_t in_len)
3129 CBB cbb;
3175 CBB cbb;
H A Ds3_srvr.c2165 CBB new_premaster, child;
/external/chromium_org/chrome/common/net/
H A Dx509_certificate_model_openssl.cc1147 CBB pkcs7;

Completed in 1313 milliseconds