Searched refs:tm_buf (Results 1 – 4 of 4) sorted by relevance
162 struct tm *tm_buf) in mbedtls_platform_gmtime_r() argument166 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()
1006 struct tm *lt, tm_buf; in x509_get_current_time() local1011 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()