Lines Matching defs:tmps
270 ASN1_TIME *tmps = NULL;
286 tmps = ASN1_STRING_new();
288 tmps = s;
289 if (tmps == NULL)
292 if (!ASN1_STRING_set(tmps, NULL, len))
295 tmps->type = type;
296 p = (char*)tmps->data;
299 tmps->length = BIO_snprintf(p, len, "%04d%02d%02d%02d%02d%02dZ",
304 tmps->length = BIO_snprintf(p, len, "%02d%02d%02d%02d%02d%02dZ",
310 ebcdic2ascii(tmps->data, tmps->data, tmps->length);
312 return tmps;
314 if (tmps != s)
315 ASN1_STRING_free(tmps);