Lines Matching refs:cached_parameters
1487 ctx->cached_parameters.dist_id_name = OPENSSL_strdup(name); in evp_pkey_ctx_store_cached_data()
1488 if (ctx->cached_parameters.dist_id_name == NULL) { in evp_pkey_ctx_store_cached_data()
1494 ctx->cached_parameters.dist_id = OPENSSL_memdup(data, data_len); in evp_pkey_ctx_store_cached_data()
1495 if (ctx->cached_parameters.dist_id == NULL) { in evp_pkey_ctx_store_cached_data()
1500 ctx->cached_parameters.dist_id_set = 1; in evp_pkey_ctx_store_cached_data()
1501 ctx->cached_parameters.dist_id_len = data_len; in evp_pkey_ctx_store_cached_data()
1513 OPENSSL_free(ctx->cached_parameters.dist_id); in evp_pkey_ctx_free_cached_data()
1514 OPENSSL_free(ctx->cached_parameters.dist_id_name); in evp_pkey_ctx_free_cached_data()
1515 ctx->cached_parameters.dist_id = NULL; in evp_pkey_ctx_free_cached_data()
1516 ctx->cached_parameters.dist_id_name = NULL; in evp_pkey_ctx_free_cached_data()
1530 if (ret && ctx->cached_parameters.dist_id_set) { in evp_pkey_ctx_use_cached_data()
1531 const char *name = ctx->cached_parameters.dist_id_name; in evp_pkey_ctx_use_cached_data()
1532 const void *val = ctx->cached_parameters.dist_id; in evp_pkey_ctx_use_cached_data()
1533 size_t len = ctx->cached_parameters.dist_id_len; in evp_pkey_ctx_use_cached_data()