Home | History | Annotate | Download | only in testutil

Lines Matching defs:timestamp_tm

29     struct tm *timestamp_tm = NULL;
45 timestamp_tm = OPENSSL_malloc(sizeof(*timestamp_tm));
46 if (timestamp_tm == NULL) {
50 if (!(ASN1_TIME_to_tm(timestamp_asn1, timestamp_tm))) {
51 OPENSSL_free(timestamp_tm);
66 OPENSSL_free(timestamp_tm);
72 timestamp_utc = mktime(timestamp_tm);
81 timestamp_utc = timegm(timestamp_tm);
83 timestamp_local = mktime(timestamp_tm);
86 OPENSSL_free(timestamp_tm);