Lines Matching defs:name
93 const X509_NAME *name, X509_OBJECT *ret,
102 return ctx->method->get_by_subject_ex(ctx, type, name, ret, libctx,
105 return ctx->method->get_by_subject(ctx, type, name, ret);
109 const X509_NAME *name, X509_OBJECT *ret)
111 return X509_LOOKUP_by_subject_ex(ctx, type, name, ret, NULL, NULL);
115 const X509_NAME *name,
121 return ctx->method->get_by_issuer_serial(ctx, type, name, serial, ret);
295 const X509_NAME *name)
301 if (!X509_STORE_CTX_get_by_subject(vs, type, name, ret)) {
311 const X509_NAME *name, X509_OBJECT *ret)
327 tmp = X509_OBJECT_retrieve_by_subject(store->objs, type, name);
333 j = X509_LOOKUP_by_subject_ex(lu, type, name, &stmp, vs->libctx,
503 const X509_NAME *name, int *pnmatch)
514 x509_s.cert_info.subject = (X509_NAME *)name; /* won't modify it */
518 crl_s.crl.issuer = (X509_NAME *)name; /* won't modify it */
530 const X509_NAME *name)
532 return x509_object_idx_cnt(h, type, name, NULL);
537 const X509_NAME *name)
540 idx = X509_OBJECT_idx_by_subject(h, type, name);
717 * Try to get issuer cert from |ctx->store| matching the subject name of |x|.