Lines Matching defs:idx
2127 int X509_STORE_CTX_set_ex_data(X509_STORE_CTX *ctx, int idx, void *data)
2129 return CRYPTO_set_ex_data(&ctx->ex_data, idx, data);
2132 void *X509_STORE_CTX_get_ex_data(const X509_STORE_CTX *ctx, int idx)
2134 return CRYPTO_get_ex_data(&ctx->ex_data, idx);
2236 int idx;
2251 idx = X509_PURPOSE_get_by_id(purpose);
2252 if (idx == -1) {
2256 ptmp = X509_PURPOSE_get0(idx);
2258 idx = X509_PURPOSE_get_by_id(def_purpose);
2259 if (idx == -1) {
2263 ptmp = X509_PURPOSE_get0(idx);
2270 idx = X509_TRUST_get_by_id(trust);
2271 if (idx == -1) {
2436 int idx = X509_PURPOSE_get_by_id(ctx->param->purpose);
2437 X509_PURPOSE *xp = X509_PURPOSE_get0(idx);