Home | History | Annotate | Download | only in openssl

Lines Matching full:sets

42 /* CBS_init sets |cbs| to point to |data|. It does not take ownership of
82 /* CBS_get_u8 sets |*out| to the next uint8_t from |cbs| and advances |cbs|. It
86 /* CBS_get_u16 sets |*out| to the next, big-endian uint16_t from |cbs| and
90 /* CBS_get_u24 sets |*out| to the next, big-endian 24-bit value from |cbs| and
94 /* CBS_get_u32 sets |*out| to the next, big-endian uint32_t value from |cbs|
98 /* CBS_get_bytes sets |*out| to the next |len| bytes from |cbs| and advances
106 /* CBS_get_u8_length_prefixed sets |*out| to the contents of an 8-bit,
111 /* CBS_get_u16_length_prefixed sets |*out| to the contents of a 16-bit,
116 /* CBS_get_u24_length_prefixed sets |*out| to the contents of a 24-bit,
138 /* CBS_get_asn1 sets |*out| to the contents of DER-encoded, ASN.1 element (not
157 /* CBS_get_any_asn1_element sets |*out| to contain the next ASN.1 element from
158 * |*cbs| (including header bytes) and advances |*cbs|. It sets |*out_tag| to
176 * and sets |*out| to its value. It returns one on success and zero on error,
182 * tagged with |tag| and sets |*out| to its contents. If present and if
183 * |out_present| is not NULL, it sets |*out_present| to one, otherwise zero. It
190 * explicitly-tagged OCTET STRING from |cbs|. If present, it sets
191 * |*out| to the string and |*out_present| to one. Otherwise, it sets
200 * INTEGER from |cbs|. If present, it sets |*out| to the
201 * value. Otherwise, it sets |*out| to |default_value|. It returns one
209 * |cbs|. If present, it sets |*out| to either zero or one, based on the
210 * boolean. Otherwise, it sets |*out| to |default_value|. It returns one on
255 /* CBB_zero sets an uninitialised |cbb| to the zero state. It must be
280 /* CBB_finish completes any pending length prefix and sets |*out_data| to a
309 /* CBB_add_u8_length_prefixed sets |*out_contents| to a new child of |cbb|. The
314 /* CBB_add_u16_length_prefixed sets |*out_contents| to a new child of |cbb|.
319 /* CBB_add_u24_length_prefixed sets |*out_contents| to a new child of |cbb|.
324 /* CBB_add_asn1 sets |*out_contents| to a |CBB| into which the contents of an
335 /* CBB_add_space appends |len| bytes to |cbb| and sets |*out_data| to point to
341 /* CBB_reserve ensures |cbb| has room for |len| additional bytes and sets