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

  /external/boringssl/src/crypto/bytestring/
ber.c 99 CBB *out_contents, out_contents_storage; local
104 out_contents = out;
150 out_contents = &out_contents_storage;
153 if (!cbs_convert_ber(in, out_contents,
158 if (out_contents != out && !CBB_flush(out)) {
169 out_contents = &out_contents_storage;
177 if (!cbs_convert_ber(&contents, out_contents, 0 /* don't squash header */,
182 if (!CBB_add_bytes(out_contents, CBS_data(&contents),
188 if (out_contents != out && !CBB_flush(out)) {
cbb.c 276 static int cbb_add_length_prefixed(CBB *cbb, CBB *out_contents,
290 memset(out_contents, 0, sizeof(CBB));
291 out_contents->base = cbb->base;
292 cbb->child = out_contents;
300 int CBB_add_u8_length_prefixed(CBB *cbb, CBB *out_contents) {
301 return cbb_add_length_prefixed(cbb, out_contents, 1);
304 int CBB_add_u16_length_prefixed(CBB *cbb, CBB *out_contents) {
305 return cbb_add_length_prefixed(cbb, out_contents, 2);
308 int CBB_add_u24_length_prefixed(CBB *cbb, CBB *out_contents) {
309 return cbb_add_length_prefixed(cbb, out_contents, 3)
    [all...]
  /external/boringssl/src/include/openssl/
bytestring.h 309 /* CBB_add_u8_length_prefixed sets |*out_contents| to a new child of |cbb|. The
310 * data written to |*out_contents| will be prefixed in |cbb| with an 8-bit
312 OPENSSL_EXPORT int CBB_add_u8_length_prefixed(CBB *cbb, CBB *out_contents);
314 /* CBB_add_u16_length_prefixed sets |*out_contents| to a new child of |cbb|.
315 * The data written to |*out_contents| will be prefixed in |cbb| with a 16-bit,
317 OPENSSL_EXPORT int CBB_add_u16_length_prefixed(CBB *cbb, CBB *out_contents);
319 /* CBB_add_u24_length_prefixed sets |*out_contents| to a new child of |cbb|.
320 * The data written to |*out_contents| will be prefixed in |cbb| with a 24-bit,
322 OPENSSL_EXPORT int CBB_add_u24_length_prefixed(CBB *cbb, CBB *out_contents);
324 /* CBB_add_asn1 sets |*out_contents| to a |CBB| into which the contents of a
    [all...]
bio.h 384 /* BIO_mem_contents sets |*out_contents| to point to the current contents of
388 const uint8_t **out_contents,
    [all...]
  /system/webservd/webservd/
dbus_protocol_handler.cc 158 dbus::FileDescriptor* out_contents) {
165 out_contents->PutValue(file.TakePlatformFile());
166 out_contents->CheckValidity();
dbus_protocol_handler.h 77 dbus::FileDescriptor* out_contents) override;
  /external/boringssl/src/crypto/bio/
bio_mem.c 300 int BIO_mem_contents(const BIO *bio, const uint8_t **out_contents,
308 *out_contents = (uint8_t *)b->data;
  /system/update_engine/include/debugd/
dbus-proxies.h 333 std::string* out_contents,
    [all...]

Completed in 258 milliseconds