Home | History | Annotate | Download | only in x509

Lines Matching full:lastpos

98 int X509_NAME_get_index_by_NID(X509_NAME *name, int nid, int lastpos)
104 return(X509_NAME_get_index_by_OBJ(name,obj,lastpos));
107 /* NOTE: you should be passsing -1, not 0 as lastpos */
109 int lastpos)
116 if (lastpos < 0)
117 lastpos= -1;
120 for (lastpos++; lastpos < n; lastpos++)
122 ne=sk_X509_NAME_ENTRY_value(sk,lastpos);
124 return(lastpos);