Home
last modified time | relevance | path

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

/external/mbedtls/library/
Dplatform_util.c106 struct tm *tm_buf ) in mbedtls_platform_gmtime_r() argument
110 return( ( gmtime_s( tt, tm_buf ) == 0 ) ? NULL : tm_buf ); in mbedtls_platform_gmtime_r()
113 return( ( gmtime_s( tm_buf, tt ) == 0 ) ? tm_buf : NULL ); in mbedtls_platform_gmtime_r()
116 return( gmtime_r( tt, tm_buf ) ); in mbedtls_platform_gmtime_r()
129 memcpy( tm_buf, lt, sizeof( struct tm ) ); in mbedtls_platform_gmtime_r()
137 return( ( lt == NULL ) ? NULL : tm_buf ); in mbedtls_platform_gmtime_r()
Dx509.c966 struct tm *lt, tm_buf; in x509_get_current_time() local
971 lt = mbedtls_platform_gmtime_r( &tt, &tm_buf ); in x509_get_current_time()
/external/openthread/third_party/mbedtls/repo/library/
Dplatform_util.c104 struct tm *tm_buf ) in mbedtls_platform_gmtime_r() argument
107 return( ( gmtime_s( tm_buf, tt ) == 0 ) ? tm_buf : NULL ); in mbedtls_platform_gmtime_r()
109 return( gmtime_r( tt, tm_buf ) ); in mbedtls_platform_gmtime_r()
122 memcpy( tm_buf, lt, sizeof( struct tm ) ); in mbedtls_platform_gmtime_r()
130 return( ( lt == NULL ) ? NULL : tm_buf ); in mbedtls_platform_gmtime_r()
Dx509.c901 struct tm *lt, tm_buf; in x509_get_current_time() local
906 lt = mbedtls_platform_gmtime_r( &tt, &tm_buf ); in x509_get_current_time()
/external/mbedtls/include/mbedtls/
Dplatform_util.h200 struct tm *tm_buf );
/external/openthread/third_party/mbedtls/repo/include/mbedtls/
Dplatform_util.h276 struct tm *tm_buf );
/external/pdfium/core/fpdfapi/page/
Dcpdf_docpagedata.cpp579 LPBYTE tm_buf = FX_Alloc(BYTE, tm_size); in AddWindowsFont() local
580 OUTLINETEXTMETRIC* ptm = reinterpret_cast<OUTLINETEXTMETRIC*>(tm_buf); in AddWindowsFont()
604 FX_Free(tm_buf); in AddWindowsFont()