Searched refs:tm_buf (Results 1 – 2 of 2) sorted by relevance
177 struct tm *tm_buf) in mbedtls_platform_gmtime_r() argument181 return (gmtime_s(tt, tm_buf) == 0) ? NULL : tm_buf; in mbedtls_platform_gmtime_r()184 return (gmtime_s(tm_buf, tt) == 0) ? tm_buf : NULL; in mbedtls_platform_gmtime_r()187 return gmtime_r(tt, tm_buf); in mbedtls_platform_gmtime_r()200 memcpy(tm_buf, lt, sizeof(struct tm)); in mbedtls_platform_gmtime_r()209 return (lt == NULL) ? NULL : tm_buf; in mbedtls_platform_gmtime_r()
190 struct tm *tm_buf);