Searched refs:timer (Results 1 – 17 of 17) sorted by relevance
/openssl/crypto/ |
H A D | o_time.c | 14 struct tm *OPENSSL_gmtime(const time_t *timer, struct tm *result) in OPENSSL_gmtime() argument 35 if (gmtime_r(timer, ts2) == NULL) in OPENSSL_gmtime() 41 if (gmtime_r(timer, result) == NULL) in OPENSSL_gmtime() 45 if (gmtime_s(result, timer)) in OPENSSL_gmtime() 49 ts = gmtime(timer); in OPENSSL_gmtime()
|
/openssl/doc/man3/ |
H A D | OPENSSL_gmtime.pod | 13 struct tm *OPENSSL_gmtime(const time_t *timer, struct tm *result); 20 OPENSSL_gmtime() returns the UTC time specified by I<timer> into the provided 30 contents of the time_t given by I<timer> are stored into the I<result>. Calling 31 with I<timer> equal to NULL means use the current time.
|
H A D | DTLS_set_timer_cb.pod | 7 - Set callback for controlling DTLS timer duration
|
H A D | OSSL_sleep.pod | 18 limitation on the underlying system call parameter size or by system timer
|
H A D | SSL_get_event_timeout.pod | 40 There are currently no timer events which require handling in the future. The
|
H A D | SSL_handle_events.pod | 23 OpenSSL in nonblocking mode to give OpenSSL an opportunity to handle timer
|
/openssl/doc/designs/ddd/ |
H A D | ddd-06-mem-uv.c | 76 uv_timer_t timer; member 146 uv_timer_init(uv_default_loop(), &conn->timer); in new_conn() 147 conn->timer.data = conn; in new_conn() 230 uv_close((uv_handle_t *)&conn->timer, teardown_continued); in teardown() 576 static void timer_done(uv_timer_t *timer) in timer_done() argument 578 APP_CONN *conn = (APP_CONN *)timer->data; in timer_done() 597 uv_timer_start(&conn->timer, timer_done, ms, 0); in set_timer()
|
H A D | REPORT.md | 289 - Additional use of libuv to configure a timer event;
|
/openssl/test/ |
H A D | run_tests.pl | 52 timer => $ENV{HARNESS_TIMER} ? 1 : 0,
|
H A D | sslapitest.c | 3519 static int check_early_data_timeout(OSSL_TIME timer) in check_early_data_timeout() argument 3531 timer = ossl_time_subtract(ossl_time_now(), timer); in check_early_data_timeout() 3547 OSSL_TIME timer; in test_early_data_read_write() local 3561 timer = ossl_time_now(); in test_early_data_read_write() 3791 OSSL_TIME timer; in test_early_data_replay_int() local 3846 timer = ossl_time_now(); in test_early_data_replay_int() 4398 OSSL_TIME timer = ossl_time_now(); in test_early_data_psk() local 4450 OSSL_TIME timer; in test_early_data_psk_with_all_ciphers() local 4528 timer = ossl_time_now(); in test_early_data_psk_with_all_ciphers() 7868 OSSL_TIME timer; in test_info_callback() local [all …]
|
H A D | quicapitest.c | 222 OSSL_TIME timer, timediff; in test_fin_only_blocking() local 257 timer = ossl_time_now(); in test_fin_only_blocking() 260 timediff = ossl_time_subtract(ossl_time_now(), timer); in test_fin_only_blocking()
|
/openssl/doc/designs/ |
H A D | thread-api.md | 9 - Some transports (e.g. QUIC, DTLS) may need to handle timer events
|
/openssl/include/openssl/ |
H A D | crypto.h.in | 428 struct tm *OPENSSL_gmtime(const time_t *timer, struct tm *result);
|
/openssl/doc/designs/quic-design/ |
H A D | connection-state-machine.md | 221 timer events related to the connection will ever need fire again. This is a
|
H A D | quic-io-arch.md | 53 It should also be noted that implementation of QUIC requires handling of timer
|
/openssl/doc/man7/ |
H A D | openssl-quic.pod | 410 satisfies this requirement. This is required to ensure that timer events
|
/openssl/ |
H A D | CHANGES.md | 3753 precision timer is mixed into the RNG state so the likelihood of a parent
|
Completed in 86 milliseconds