Lines Matching defs:out
34 * The word 'cryptographic' can be left out if the rouines from the library
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
382 uint8_t *out;
385 if (!SSL_SESSION_to_bytes(in, &out, &len)) {
390 OPENSSL_free(out);
396 memcpy(*pp, out, len);
399 OPENSSL_free(out);
405 * explicitly tagged with |tag| from |cbs| and saves it in |*out|. On
406 * entry, if |*out| is not NULL, it frees the existing contents. If
407 * the element was not found, it sets |*out| to NULL. It returns one
410 static int SSL_SESSION_parse_string(CBS *cbs, char **out, unsigned tag) {
422 if (!CBS_strdup(&value, out)) {
427 OPENSSL_free(*out);
428 *out = NULL;
456 CBS *cbs, uint8_t *out, unsigned *out_len, unsigned max_out, unsigned tag) {
463 memcpy(out, CBS_data(&value), CBS_len(&value));
468 static int SSL_SESSION_parse_long(CBS *cbs, long *out, unsigned tag,
477 *out = (long)value;
481 static int SSL_SESSION_parse_u32(CBS *cbs, uint32_t *out, unsigned tag,
490 *out = (uint32_t)value;