Home
last modified time | relevance | path

Searched refs:p_tm (Results 1 – 2 of 2) sorted by relevance

/PHP-7.4/main/
H A Dreentrancy.c82 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()
85 return (p_tm); 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()
106 return (p_tm); in php_gmtime_r()
122 memcpy(p_tm, tmp, sizeof(struct tm)); in php_localtime_r()
123 tmp = p_tm; in php_localtime_r()
177 PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm) in php_gmtime_r() argument
185 memcpy(p_tm, tmp, sizeof(struct tm)); in php_gmtime_r()
[all …]
H A Dphp_reentrancy.h54 PHPAPI struct tm *php_localtime_r(const time_t *const timep, struct tm *p_tm);
58 struct tm *localtime_r(const time_t *const timep, struct tm *p_tm);
87 PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm);
91 struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm);

Completed in 5 milliseconds