Lines Matching defs:timeout
28 cache->timeout = MBEDTLS_SSL_CACHE_DEFAULT_TIMEOUT;
50 if (cache->timeout != 0 &&
51 (int) (t - cur->timestamp) > cache->timeout) {
170 if (cache->timeout != 0 &&
171 (int) (t - cur->timestamp) > cache->timeout) {
371 void mbedtls_ssl_cache_set_timeout(mbedtls_ssl_cache_context *cache, int timeout)
373 if (timeout < 0) {
374 timeout = 0;
377 cache->timeout = timeout;