Searched refs:lastpos (Results 1 - 18 of 18) sorted by relevance

/external/openssl/crypto/x509/
H A Dx509_ext.c74 int X509_CRL_get_ext_by_NID(X509_CRL *x, int nid, int lastpos) argument
76 return(X509v3_get_ext_by_NID(x->crl->extensions,nid,lastpos));
79 int X509_CRL_get_ext_by_OBJ(X509_CRL *x, ASN1_OBJECT *obj, int lastpos) argument
81 return(X509v3_get_ext_by_OBJ(x->crl->extensions,obj,lastpos));
84 int X509_CRL_get_ext_by_critical(X509_CRL *x, int crit, int lastpos) argument
86 return(X509v3_get_ext_by_critical(x->crl->extensions,crit,lastpos));
120 int X509_get_ext_by_NID(X509 *x, int nid, int lastpos) argument
122 return(X509v3_get_ext_by_NID(x->cert_info->extensions,nid,lastpos));
125 int X509_get_ext_by_OBJ(X509 *x, ASN1_OBJECT *obj, int lastpos) argument
127 return(X509v3_get_ext_by_OBJ(x->cert_info->extensions,obj,lastpos));
130 X509_get_ext_by_critical(X509 *x, int crit, int lastpos) argument
167 X509_REVOKED_get_ext_by_NID(X509_REVOKED *x, int nid, int lastpos) argument
172 X509_REVOKED_get_ext_by_OBJ(X509_REVOKED *x, ASN1_OBJECT *obj, int lastpos) argument
178 X509_REVOKED_get_ext_by_critical(X509_REVOKED *x, int crit, int lastpos) argument
[all...]
H A Dx509_v3.c75 int lastpos)
81 return(X509v3_get_ext_by_OBJ(x,obj,lastpos));
85 int lastpos)
91 lastpos++;
92 if (lastpos < 0)
93 lastpos=0;
95 for ( ; lastpos < n; lastpos++)
97 ex=sk_X509_EXTENSION_value(sk,lastpos);
99 return(lastpos);
[all...]
H A Dx509_att.c74 int lastpos)
80 return(X509at_get_attr_by_OBJ(x,obj,lastpos));
84 int lastpos)
90 lastpos++;
91 if (lastpos < 0)
92 lastpos=0;
94 for ( ; lastpos < n; lastpos++)
96 ex=sk_X509_ATTRIBUTE_value(sk,lastpos);
98 return(lastpos);
[all...]
H A Dx509name.c98 int X509_NAME_get_index_by_NID(X509_NAME *name, int nid, int lastpos) argument
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);
108 X509_NAME_get_index_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, int lastpos) argument
[all...]
H A Dx509.h936 int lastpos);
938 int lastpos);
1012 /* NOTE: you should be passsing -1, not 0 as lastpos. The functions that use
1013 * lastpos, search after that position on. */
1014 int X509_NAME_get_index_by_NID(X509_NAME *name,int nid,int lastpos);
1016 int lastpos);
1043 int nid, int lastpos); variable
1045 ASN1_OBJECT *obj,int lastpos); variable
1047 int crit, int lastpos); variable
1054 int X509_get_ext_by_NID(X509 *x, int nid, int lastpos);
1100 int lastpos); variable
1102 int lastpos); variable
1117 ASN1_OBJECT *obj, int lastpos, int type); variable
[all...]
H A Dx509_req.c264 int lastpos)
266 return X509at_get_attr_by_NID(req->req_info->attributes, nid, lastpos);
270 int lastpos)
272 return X509at_get_attr_by_OBJ(req->req_info->attributes, obj, lastpos);
263 X509_REQ_get_attr_by_NID(const X509_REQ *req, int nid, int lastpos) argument
269 X509_REQ_get_attr_by_OBJ(const X509_REQ *req, ASN1_OBJECT *obj, int lastpos) argument
/external/openssl/crypto/ocsp/
H A Docsp_ext.c81 int OCSP_REQUEST_get_ext_by_NID(OCSP_REQUEST *x, int nid, int lastpos) argument
83 return(X509v3_get_ext_by_NID(x->tbsRequest->requestExtensions,nid,lastpos));
86 int OCSP_REQUEST_get_ext_by_OBJ(OCSP_REQUEST *x, ASN1_OBJECT *obj, int lastpos) argument
88 return(X509v3_get_ext_by_OBJ(x->tbsRequest->requestExtensions,obj,lastpos));
91 int OCSP_REQUEST_get_ext_by_critical(OCSP_REQUEST *x, int crit, int lastpos) argument
93 return(X509v3_get_ext_by_critical(x->tbsRequest->requestExtensions,crit,lastpos));
129 int OCSP_ONEREQ_get_ext_by_NID(OCSP_ONEREQ *x, int nid, int lastpos) argument
131 return(X509v3_get_ext_by_NID(x->singleRequestExtensions,nid,lastpos));
134 int OCSP_ONEREQ_get_ext_by_OBJ(OCSP_ONEREQ *x, ASN1_OBJECT *obj, int lastpos) argument
136 return(X509v3_get_ext_by_OBJ(x->singleRequestExtensions,obj,lastpos));
139 OCSP_ONEREQ_get_ext_by_critical(OCSP_ONEREQ *x, int crit, int lastpos) argument
177 OCSP_BASICRESP_get_ext_by_NID(OCSP_BASICRESP *x, int nid, int lastpos) argument
182 OCSP_BASICRESP_get_ext_by_OBJ(OCSP_BASICRESP *x, ASN1_OBJECT *obj, int lastpos) argument
187 OCSP_BASICRESP_get_ext_by_critical(OCSP_BASICRESP *x, int crit, int lastpos) argument
225 OCSP_SINGLERESP_get_ext_by_NID(OCSP_SINGLERESP *x, int nid, int lastpos) argument
230 OCSP_SINGLERESP_get_ext_by_OBJ(OCSP_SINGLERESP *x, ASN1_OBJECT *obj, int lastpos) argument
235 OCSP_SINGLERESP_get_ext_by_critical(OCSP_SINGLERESP *x, int crit, int lastpos) argument
[all...]
H A Docsp.h490 int OCSP_REQUEST_get_ext_by_NID(OCSP_REQUEST *x, int nid, int lastpos);
491 int OCSP_REQUEST_get_ext_by_OBJ(OCSP_REQUEST *x, ASN1_OBJECT *obj, int lastpos);
492 int OCSP_REQUEST_get_ext_by_critical(OCSP_REQUEST *x, int crit, int lastpos);
501 int OCSP_ONEREQ_get_ext_by_NID(OCSP_ONEREQ *x, int nid, int lastpos);
502 int OCSP_ONEREQ_get_ext_by_OBJ(OCSP_ONEREQ *x, ASN1_OBJECT *obj, int lastpos);
503 int OCSP_ONEREQ_get_ext_by_critical(OCSP_ONEREQ *x, int crit, int lastpos);
512 int OCSP_BASICRESP_get_ext_by_NID(OCSP_BASICRESP *x, int nid, int lastpos);
513 int OCSP_BASICRESP_get_ext_by_OBJ(OCSP_BASICRESP *x, ASN1_OBJECT *obj, int lastpos);
514 int OCSP_BASICRESP_get_ext_by_critical(OCSP_BASICRESP *x, int crit, int lastpos);
523 int OCSP_SINGLERESP_get_ext_by_NID(OCSP_SINGLERESP *x, int nid, int lastpos);
[all...]
/external/icu4c/test/intltest/
H A Dtokiter.h57 // return reader.describePosition() + ':' + (lastpos+1);
68 int32_t lastpos; member in class:TokenIterator
H A Dtokiter.cpp20 pos = lastpos = -1;
40 lastpos = pos;
/external/openssl/crypto/x509v3/
H A Dv3_lib.c196 int lastpos, i; local
203 if(idx) lastpos = *idx + 1;
204 else lastpos = 0;
205 if(lastpos < 0) lastpos = 0;
206 for(i = lastpos; i < sk_X509_EXTENSION_num(x); i++)
/external/openssl/crypto/evp/
H A Devp_pkey.c190 int lastpos)
192 return X509at_get_attr_by_NID(key->attributes, nid, lastpos);
196 int lastpos)
198 return X509at_get_attr_by_OBJ(key->attributes, obj, lastpos);
189 EVP_PKEY_get_attr_by_NID(const EVP_PKEY *key, int nid, int lastpos) argument
195 EVP_PKEY_get_attr_by_OBJ(const EVP_PKEY *key, ASN1_OBJECT *obj, int lastpos) argument
/external/openssl/include/openssl/
H A Docsp.h490 int OCSP_REQUEST_get_ext_by_NID(OCSP_REQUEST *x, int nid, int lastpos);
491 int OCSP_REQUEST_get_ext_by_OBJ(OCSP_REQUEST *x, ASN1_OBJECT *obj, int lastpos);
492 int OCSP_REQUEST_get_ext_by_critical(OCSP_REQUEST *x, int crit, int lastpos);
501 int OCSP_ONEREQ_get_ext_by_NID(OCSP_ONEREQ *x, int nid, int lastpos);
502 int OCSP_ONEREQ_get_ext_by_OBJ(OCSP_ONEREQ *x, ASN1_OBJECT *obj, int lastpos);
503 int OCSP_ONEREQ_get_ext_by_critical(OCSP_ONEREQ *x, int crit, int lastpos);
512 int OCSP_BASICRESP_get_ext_by_NID(OCSP_BASICRESP *x, int nid, int lastpos);
513 int OCSP_BASICRESP_get_ext_by_OBJ(OCSP_BASICRESP *x, ASN1_OBJECT *obj, int lastpos);
514 int OCSP_BASICRESP_get_ext_by_critical(OCSP_BASICRESP *x, int crit, int lastpos);
523 int OCSP_SINGLERESP_get_ext_by_NID(OCSP_SINGLERESP *x, int nid, int lastpos);
[all...]
H A Dx509.h936 int lastpos);
938 int lastpos);
1012 /* NOTE: you should be passsing -1, not 0 as lastpos. The functions that use
1013 * lastpos, search after that position on. */
1014 int X509_NAME_get_index_by_NID(X509_NAME *name,int nid,int lastpos);
1016 int lastpos);
1043 int nid, int lastpos); variable
1045 ASN1_OBJECT *obj,int lastpos); variable
1047 int crit, int lastpos); variable
1054 int X509_get_ext_by_NID(X509 *x, int nid, int lastpos);
1100 int lastpos); variable
1102 int lastpos); variable
1117 ASN1_OBJECT *obj, int lastpos, int type); variable
[all...]
H A Dts.h396 int TS_REQ_get_ext_by_NID(TS_REQ *a, int nid, int lastpos);
397 int TS_REQ_get_ext_by_OBJ(TS_REQ *a, ASN1_OBJECT *obj, int lastpos);
398 int TS_REQ_get_ext_by_critical(TS_REQ *a, int crit, int lastpos);
457 int TS_TST_INFO_get_ext_by_NID(TS_TST_INFO *a, int nid, int lastpos);
458 int TS_TST_INFO_get_ext_by_OBJ(TS_TST_INFO *a, ASN1_OBJECT *obj, int lastpos);
459 int TS_TST_INFO_get_ext_by_critical(TS_TST_INFO *a, int crit, int lastpos);
/external/llvm/lib/Support/
H A Dregengine.inc79 const char **lastpos; /* [nplus+1] */
172 m->lastpos = NULL;
188 free((void*)m->lastpos);
222 if (g->nplus > 0 && m->lastpos == NULL)
223 m->lastpos = (const char **)malloc((g->nplus+1) *
225 if (g->nplus > 0 && m->lastpos == NULL) {
238 assert(g->nplus == 0 || m->lastpos != NULL);
285 if (m->lastpos != NULL)
286 free((char *)m->lastpos);
609 assert(m->lastpos !
[all...]
/external/bsdiff/
H A Dbsdiff.c203 off_t lastscan,lastpos,lastoffset; local
273 lastscan=0;lastpos=0;lastoffset=0;
296 for(i=0;(lastscan+i<scan)&&(lastpos+i<oldsize);) {
297 if(old[lastpos+i]==new[lastscan+i]) s++;
316 old[lastpos+lenf-overlap+i]) s++;
327 db[dblen+i]=new[lastscan+i]-old[lastpos+i];
344 offtout((pos-lenb)-(lastpos+lenf),buf);
350 lastpos=pos-lenb;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1126 milliseconds