Home
last modified time | relevance | path

Searched refs:tt (Results 1 – 5 of 5) sorted by relevance

/openthread-latest/third_party/mbedtls/repo/library/
Dplatform_util.c176 struct tm *mbedtls_platform_gmtime_r(const mbedtls_time_t *tt, in mbedtls_platform_gmtime_r() argument
181 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()
197 lt = gmtime(tt); in mbedtls_platform_gmtime_r()
Dx509.c1053 int mbedtls_x509_time_gmtime(mbedtls_time_t tt, mbedtls_x509_time *now) in mbedtls_x509_time_gmtime() argument
1057 if (mbedtls_platform_gmtime_r(&tt, &tm) == NULL) { in mbedtls_x509_time_gmtime()
/openthread-latest/third_party/mbedtls/repo/include/mbedtls/
Dplatform_util.h189 struct tm *mbedtls_platform_gmtime_r(const mbedtls_time_t *tt,
Dx509.h397 int mbedtls_x509_time_gmtime(mbedtls_time_t tt, mbedtls_x509_time *now);
/openthread-latest/third_party/tcplp/bsdtcp/
Dtcp_output.c81 int tt; in tcp_setpersist() local
89 TCPT_RANGESET(tt, t * tcp_backoff[tp->t_rxtshift], in tcp_setpersist()
91 tcp_timer_activate(tp, TT_PERSIST, tt); in tcp_setpersist()