Lines Matching refs:out_contents
297 static int cbb_add_length_prefixed(CBB *cbb, CBB *out_contents, in cbb_add_length_prefixed() argument
311 OPENSSL_memset(out_contents, 0, sizeof(CBB)); in cbb_add_length_prefixed()
312 out_contents->base = cbb->base; in cbb_add_length_prefixed()
313 cbb->child = out_contents; in cbb_add_length_prefixed()
321 int CBB_add_u8_length_prefixed(CBB *cbb, CBB *out_contents) { in CBB_add_u8_length_prefixed() argument
322 return cbb_add_length_prefixed(cbb, out_contents, 1); in CBB_add_u8_length_prefixed()
325 int CBB_add_u16_length_prefixed(CBB *cbb, CBB *out_contents) { in CBB_add_u16_length_prefixed() argument
326 return cbb_add_length_prefixed(cbb, out_contents, 2); in CBB_add_u16_length_prefixed()
329 int CBB_add_u24_length_prefixed(CBB *cbb, CBB *out_contents) { in CBB_add_u24_length_prefixed() argument
330 return cbb_add_length_prefixed(cbb, out_contents, 3); in CBB_add_u24_length_prefixed()
359 int CBB_add_asn1(CBB *cbb, CBB *out_contents, unsigned tag) { in CBB_add_asn1() argument
382 OPENSSL_memset(out_contents, 0, sizeof(CBB)); in CBB_add_asn1()
383 out_contents->base = cbb->base; in CBB_add_asn1()
384 cbb->child = out_contents; in CBB_add_asn1()