Searched refs:tm_buf (Results 1 – 4 of 4) sorted by relevance
104 struct tm *tm_buf ) in mbedtls_platform_gmtime_r() argument107 return( ( gmtime_s( tm_buf, tt ) == 0 ) ? tm_buf : NULL ); in mbedtls_platform_gmtime_r()109 return( gmtime_r( tt, tm_buf ) ); in mbedtls_platform_gmtime_r()122 memcpy( tm_buf, lt, sizeof( struct tm ) ); in mbedtls_platform_gmtime_r()130 return( ( lt == NULL ) ? NULL : tm_buf ); in mbedtls_platform_gmtime_r()
903 struct tm *lt, tm_buf; in x509_get_current_time() local908 lt = mbedtls_platform_gmtime_r( &tt, &tm_buf ); in x509_get_current_time()
200 struct tm *tm_buf );
1162 struct tm tm_buf = {0}; in get_cookies() local1163 if (!parse_set_cookie_expiry_time(e->value, &tm_buf)) { in get_cookies()1164 if (av_timegm(&tm_buf) < av_gettime() / 1000000) in get_cookies()