Lines Matching defs:lastpos
28 int OCSP_REQUEST_get_ext_by_NID(OCSP_REQUEST *x, int nid, int lastpos)
31 (x->tbsRequest.requestExtensions, nid, lastpos));
35 int lastpos)
38 (x->tbsRequest.requestExtensions, obj, lastpos));
41 int OCSP_REQUEST_get_ext_by_critical(OCSP_REQUEST *x, int crit, int lastpos)
44 (x->tbsRequest.requestExtensions, crit, lastpos));
82 int OCSP_ONEREQ_get_ext_by_NID(OCSP_ONEREQ *x, int nid, int lastpos)
84 return X509v3_get_ext_by_NID(x->singleRequestExtensions, nid, lastpos);
88 int lastpos)
90 return X509v3_get_ext_by_OBJ(x->singleRequestExtensions, obj, lastpos);
93 int OCSP_ONEREQ_get_ext_by_critical(OCSP_ONEREQ *x, int crit, int lastpos)
96 (x->singleRequestExtensions, crit, lastpos));
133 int OCSP_BASICRESP_get_ext_by_NID(OCSP_BASICRESP *x, int nid, int lastpos)
136 (x->tbsResponseData.responseExtensions, nid, lastpos));
140 int lastpos)
143 (x->tbsResponseData.responseExtensions, obj, lastpos));
147 int lastpos)
150 (x->tbsResponseData.responseExtensions, crit, lastpos));
190 int OCSP_SINGLERESP_get_ext_by_NID(OCSP_SINGLERESP *x, int nid, int lastpos)
192 return X509v3_get_ext_by_NID(x->singleExtensions, nid, lastpos);
196 int lastpos)
198 return X509v3_get_ext_by_OBJ(x->singleExtensions, obj, lastpos);
202 int lastpos)
204 return X509v3_get_ext_by_critical(x->singleExtensions, crit, lastpos);