Searched defs:out_clock (Results 1 - 3 of 3) sorted by relevance

/external/boringssl/src/ssl/
H A Dssl_test.cc2218 static void CurrentTimeCallback(const SSL *ssl, timeval *out_clock) { argument
2219 *out_clock = g_current_time;
2222 static void FrozenTimeCallback(const SSL *ssl, timeval *out_clock) { argument
2223 out_clock->tv_sec = 1000;
2224 out_clock->tv_usec = 0;
H A Dssl_lib.cc416 void ssl_get_current_time(const SSL *ssl, struct OPENSSL_timeval *out_clock) { argument
419 ssl_ctx_get_current_time(ssl->ctx, out_clock);
423 struct OPENSSL_timeval *out_clock) {
431 out_clock->tv_sec = 0;
432 out_clock->tv_usec = 0;
434 out_clock->tv_sec = (uint64_t)clock.tv_sec;
435 out_clock->tv_usec = (uint32_t)clock.tv_usec;
441 out_clock->tv_sec = 1234;
442 out_clock->tv_usec = 1234;
448 out_clock
422 ssl_ctx_get_current_time(const SSL_CTX *ctx, struct OPENSSL_timeval *out_clock) argument
2478 SSL_CTX_set_current_time_cb(SSL_CTX *ctx, void (*cb)(const SSL *ssl, struct timeval *out_clock)) argument
[all...]
/external/boringssl/src/ssl/test/
H A Dbssl_shim.cc852 static void CurrentTimeCallback(const SSL *ssl, timeval *out_clock) { argument
853 *out_clock = g_clock;

Completed in 318 milliseconds