Home
last modified time | relevance | path

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

/third_party/mbedtls/library/
Dplatform_util.c162 struct tm *tm_buf) in mbedtls_platform_gmtime_r() argument
166 return (gmtime_s(tt, tm_buf) == 0) ? NULL : tm_buf; in mbedtls_platform_gmtime_r()
169 return (gmtime_s(tm_buf, tt) == 0) ? tm_buf : NULL; in mbedtls_platform_gmtime_r()
172 return gmtime_r(tt, tm_buf); in mbedtls_platform_gmtime_r()
185 memcpy(tm_buf, lt, sizeof(struct tm)); in mbedtls_platform_gmtime_r()
194 return (lt == NULL) ? NULL : tm_buf; in mbedtls_platform_gmtime_r()
Dx509.c1006 struct tm *lt, tm_buf; in x509_get_current_time() local
1011 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()