Searched refs:timep (Results 1 – 2 of 2) sorted by relevance
/PHP-7.3/main/ |
H A D | reentrancy.c | 82 PHPAPI struct tm *php_localtime_r(const time_t *const timep, struct tm *p_tm) in php_localtime_r() argument 84 if (localtime_r(timep, p_tm) == 0) in php_localtime_r() 103 PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm) in php_gmtime_r() argument 105 if (gmtime_r(timep, p_tm) == 0) in php_gmtime_r() 162 PHPAPI struct tm *php_localtime_r(const time_t *const timep, struct tm *p_tm) in php_localtime_r() argument 168 tmp = localtime(timep); in php_localtime_r() 225 PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm) in php_gmtime_r() argument 231 tmp = gmtime(timep); in php_gmtime_r()
|
H A D | php_reentrancy.h | 61 PHPAPI struct tm *php_localtime_r(const time_t *const timep, struct tm *p_tm); 65 struct tm *localtime_r(const time_t *const timep, struct tm *p_tm); 94 PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm); 98 struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm);
|
Completed in 5 milliseconds