Lines Matching defs:lastpos
72 X509at_get_attr_by_NID(const STACK_OF(X509_ATTRIBUTE) *x, int nid, int lastpos)
79 return (X509at_get_attr_by_OBJ(x, obj, lastpos));
84 const ASN1_OBJECT *obj, int lastpos)
91 lastpos++;
92 if (lastpos < 0)
93 lastpos = 0;
95 for (; lastpos < n; lastpos++) {
96 ex = sk_X509_ATTRIBUTE_value(sk, lastpos);
98 return (lastpos);
185 int lastpos, int type)
190 i = X509at_get_attr_by_OBJ(x, obj, lastpos);
193 if ((lastpos <= -2) && (X509at_get_attr_by_OBJ(x, obj, i) != -1))
196 if (lastpos <= -3 && (X509_ATTRIBUTE_count(at) != 1))