Lines Matching defs:lastpos
24 int X509_CRL_get_ext_by_NID(const X509_CRL *x, int nid, int lastpos)
26 return X509v3_get_ext_by_NID(x->crl.extensions, nid, lastpos);
30 int lastpos)
32 return X509v3_get_ext_by_OBJ(x->crl.extensions, obj, lastpos);
35 int X509_CRL_get_ext_by_critical(const X509_CRL *x, int crit, int lastpos)
37 return X509v3_get_ext_by_critical(x->crl.extensions, crit, lastpos);
71 int X509_get_ext_by_NID(const X509 *x, int nid, int lastpos)
73 return X509v3_get_ext_by_NID(x->cert_info.extensions, nid, lastpos);
76 int X509_get_ext_by_OBJ(const X509 *x, const ASN1_OBJECT *obj, int lastpos)
78 return X509v3_get_ext_by_OBJ(x->cert_info.extensions, obj, lastpos);
81 int X509_get_ext_by_critical(const X509 *x, int crit, int lastpos)
84 (x->cert_info.extensions, crit, lastpos));
119 int X509_REVOKED_get_ext_by_NID(const X509_REVOKED *x, int nid, int lastpos)
121 return X509v3_get_ext_by_NID(x->extensions, nid, lastpos);
125 int lastpos)
127 return X509v3_get_ext_by_OBJ(x->extensions, obj, lastpos);
130 int X509_REVOKED_get_ext_by_critical(const X509_REVOKED *x, int crit, int lastpos)
132 return X509v3_get_ext_by_critical(x->extensions, crit, lastpos);