Searched refs:tm (Results 1 – 5 of 5) sorted by relevance
/mbedtls-development/library/ |
A D | platform_util.c | 103 struct tm *mbedtls_platform_gmtime_r( const mbedtls_time_t *tt, in mbedtls_platform_gmtime_r() 104 struct tm *tm_buf ) in mbedtls_platform_gmtime_r() 111 struct tm *lt; in mbedtls_platform_gmtime_r() 122 memcpy( tm_buf, lt, sizeof( struct tm ) ); in mbedtls_platform_gmtime_r()
|
A D | x509.c | 552 if ( tm->year < 50 ) in x509_parse_time() 553 tm->year += 100; in x509_parse_time() 555 tm->year += 1900; in x509_parse_time() 558 CHECK( x509_parse_int( p, 2, &tm->mon ) ); in x509_parse_time() 559 CHECK( x509_parse_int( p, 2, &tm->day ) ); in x509_parse_time() 560 CHECK( x509_parse_int( p, 2, &tm->hour ) ); in x509_parse_time() 561 CHECK( x509_parse_int( p, 2, &tm->min ) ); in x509_parse_time() 568 CHECK( x509_parse_int( p, 2, &tm->sec ) ); in x509_parse_time() 589 CHECK( x509_date_is_valid( tm ) ); in x509_parse_time() 600 mbedtls_x509_time *tm ) in mbedtls_x509_get_time() argument [all …]
|
/mbedtls-development/include/mbedtls/ |
A D | platform_util.h | 199 struct tm *mbedtls_platform_gmtime_r( const mbedtls_time_t *tt, 200 struct tm *tm_buf );
|
/mbedtls-development/programs/test/ |
A D | udp_proxy.c | 810 struct timeval tm; in main() local 944 tm.tv_sec = max_wait / 1000; in main() 945 tm.tv_usec = ( max_wait % 1000 ) * 1000; in main() 947 tm_ptr = &tm; in main()
|
/mbedtls-development/programs/ssl/ |
A D | ssl_context_info.c | 305 struct tm *t = gmtime( time ); in print_time()
|
Completed in 8 milliseconds