Home
last modified time | relevance | path

Searched refs:tm_buf (Results 1 – 4 of 4) sorted by relevance

/third_party/mbedtls/library/
Dplatform_util.c104 struct tm *tm_buf ) in mbedtls_platform_gmtime_r() argument
107 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()
Dx509.c903 struct tm *lt, tm_buf; in x509_get_current_time() local
908 lt = mbedtls_platform_gmtime_r( &tt, &tm_buf ); in x509_get_current_time()
/third_party/mbedtls/include/mbedtls/
Dplatform_util.h200 struct tm *tm_buf );
/third_party/ffmpeg/libavformat/
Dhttp.c1162 struct tm tm_buf = {0}; in get_cookies() local
1163 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()