Searched refs:micros (Results 1 - 7 of 7) sorted by relevance

/freebsd-12-stable/crypto/openssl/crypto/ts/
H A Dts_local.h55 * micros [1] INTEGER (1..999) OPTIONAL }
60 ASN1_INTEGER *micros; member in struct:TS_accuracy_st
173 ASN1_INTEGER *micros; /* accuracy, 0 means not specified. */ member in struct:TS_resp_ctx
H A Dts_rsp_utils.c217 int TS_ACCURACY_set_micros(TS_ACCURACY *a, const ASN1_INTEGER *micros) argument
221 if (a->micros == micros)
223 if (micros != NULL) {
224 new_micros = ASN1_INTEGER_dup(micros);
230 ASN1_INTEGER_free(a->micros);
231 a->micros = new_micros;
237 return a->micros;
H A Dts_rsp_print.c188 if (a->micros != NULL)
189 TS_ASN1_INTEGER_print_bio(bio, a->micros);
192 BIO_printf(bio, " micros");
H A Dts_rsp_sign.c153 ASN1_INTEGER_free(ctx->micros);
249 ASN1_INTEGER_free(ctx->micros); \
250 ctx->micros = NULL;
253 int secs, int millis, int micros)
265 if (micros
266 && ((ctx->micros = ASN1_INTEGER_new()) == NULL
267 || !ASN1_INTEGER_set(ctx->micros, micros)))
562 if ((ctx->seconds || ctx->millis || ctx->micros)
569 if (ctx->micros
252 TS_RESP_CTX_set_accuracy(TS_RESP_CTX *ctx, int secs, int millis, int micros) argument
[all...]
H A Dts_conf.c379 int secs = 0, millis = 0, micros = 0; local
397 micros = atoi(val->value);
403 if (!TS_RESP_CTX_set_accuracy(ctx, secs, millis, micros))
H A Dts_asn1.c80 ASN1_IMP_OPT(TS_ACCURACY, micros, ASN1_INTEGER, 1)
/freebsd-12-stable/crypto/openssl/include/openssl/
H A Dts.h258 int TS_ACCURACY_set_micros(TS_ACCURACY *a, const ASN1_INTEGER *micros);
361 int secs, int millis, int micros);

Completed in 168 milliseconds