Lines Matching defs:ctx
79 &(ctx->tmp[0])) {
81 &(ctx->tmp[0]));
84 ctx->buf_off = 0; /* do not confuse with var decl */
88 ctx->buf_len = EVP_EncodeBlock((unsigned char *)ctx->buf,
89 (unsigned char *)ctx->tmp, /* no decl */
90 ctx->tmp_len);
93 EVP_EncodeFinal(ctx->base64,
94 (unsigned char *)ctx->buf, &(ctx->len)); /* no decl */
107 res = OSSL_CMP_CTX_set1_secretValue(ctx, (unsigned char *)pass_str,
116 if (ctx == NULL) { /* non-leading end-of-line comment */
235 if (ctx->pkey == NULL)
291 (OSSL_CMP_SRV_CTX *ctx, OSSL_CMP_MSG *msg)
299 #define CB_ERR_IF(cond, ctx, cert, depth, err) \
300 if ((cond) && ((depth) < 0 || verify_cb_cert(ctx, cert, depth, err) == 0)) \
302 static int verify_cb_crl(X509_STORE_CTX *ctx, int err)
304 ctx->error = err;
305 return ctx->verify_cb(0, ctx);
314 #define X509_STORE_CTX_set_current_cert(ctx, x) { (ctx)->current_cert = (x); }
315 #define X509_STORE_set_ex_data(ctx, idx, data) \
316 CRYPTO_set_ex_data(&(ctx)->ex_data, (idx), (data))
318 typedef int (*X509_STORE_CTX_check_revocation_fn)(X509_STORE_CTX *ctx);
319 #define X509_STORE_CTX_set_error_depth(ctx, depth) \
320 { (ctx)->error_depth = (depth); }
427 CTX *ctx = fixture->ctx; \
428 int (*set_fn)(CTX *ctx, TYPE) = \
429 (int (*)(CTX *ctx, TYPE))PREFIX##_##SETN##_##FIELD; \