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

  /external/chromium_org/third_party/boringssl/src/crypto/bytestring/
ber.c 97 CBB *out_contents, out_contents_storage; local
102 out_contents = out;
146 out_contents = &out_contents_storage;
149 if (!cbs_convert_ber(in, out_contents,
154 if (out_contents != out && !CBB_flush(out)) {
165 out_contents = &out_contents_storage;
173 if (!cbs_convert_ber(&contents, out_contents, 0 /* don't squash header */,
178 if (!CBB_add_bytes(out_contents, CBS_data(&contents),
184 if (out_contents != out && !CBB_flush(out)) {
cbb.c 242 static int cbb_add_length_prefixed(CBB *cbb, CBB *out_contents,
256 memset(out_contents, 0, sizeof(CBB));
257 out_contents->base = cbb->base;
258 cbb->child = out_contents;
265 int CBB_add_u8_length_prefixed(CBB *cbb, CBB *out_contents) {
266 return cbb_add_length_prefixed(cbb, out_contents, 1);
269 int CBB_add_u16_length_prefixed(CBB *cbb, CBB *out_contents) {
270 return cbb_add_length_prefixed(cbb, out_contents, 2);
273 int CBB_add_u24_length_prefixed(CBB *cbb, CBB *out_contents) {
274 return cbb_add_length_prefixed(cbb, out_contents, 3)
    [all...]
  /external/chromium_org/ppapi/proxy/
flash_font_file_resource.cc 47 std::string out_contents; local
50 &out_contents);
54 contents = AddFontTable(table, out_contents);
  /external/chromium_org/third_party/boringssl/src/include/openssl/
bytestring.h 231 /* CBB_add_u8_length_prefixed sets |*out_contents| to a new child of |cbb|. The
232 * data written to |*out_contents| will be prefixed in |cbb| with an 8-bit
234 OPENSSL_EXPORT int CBB_add_u8_length_prefixed(CBB *cbb, CBB *out_contents);
236 /* CBB_add_u16_length_prefixed sets |*out_contents| to a new child of |cbb|.
237 * The data written to |*out_contents| will be prefixed in |cbb| with a 16-bit,
239 OPENSSL_EXPORT int CBB_add_u16_length_prefixed(CBB *cbb, CBB *out_contents);
241 /* CBB_add_u24_length_prefixed sets |*out_contents| to a new child of |cbb|.
242 * The data written to |*out_contents| will be prefixed in |cbb| with a 24-bit,
244 OPENSSL_EXPORT int CBB_add_u24_length_prefixed(CBB *cbb, CBB *out_contents);
246 /* CBB_add_asn sets |*out_contents| to a |CBB| into which the contents of a
    [all...]
bio.h 371 /* BIO_mem_contents sets |*out_contents| to point to the current contents of
375 const uint8_t **out_contents,
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/bio/
bio_mem.c 299 int BIO_mem_contents(const BIO *bio, const uint8_t **out_contents,
307 *out_contents = (uint8_t *)b->data;

Completed in 55 milliseconds