Home | History | Annotate | Download | only in asn1

Lines Matching defs:tmps

222     ASN1_GENERALIZEDTIME *tmps = NULL;
225 tmps = ASN1_GENERALIZEDTIME_new();
227 tmps = s;
228 if (tmps == NULL)
240 p = (char *)tmps->data;
241 if ((p == NULL) || ((size_t)tmps->length < len)) {
247 OPENSSL_free(tmps->data);
248 tmps->data = (unsigned char *)p;
254 tmps->length = strlen(p);
255 tmps->type = V_ASN1_GENERALIZEDTIME;
256 return tmps;
259 ASN1_GENERALIZEDTIME_free(tmps);