Home
last modified time | relevance | path

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

/PHP-5.5/main/
H A Dreentrancy.c84 PHPAPI struct tm *php_localtime_r(const time_t *const timep, struct tm *p_tm) in php_localtime_r() argument
86 if (localtime_r(timep, p_tm) == 0) in php_localtime_r()
105 PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm) in php_gmtime_r() argument
107 if (gmtime_r(timep, p_tm) == 0) in php_gmtime_r()
116 PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm) in php_gmtime_r() argument
119 if (((struct tm*)gmtime_r(timep, p_tm)) == p_tm) in php_gmtime_r()
176 PHPAPI struct tm *php_localtime_r(const time_t *const timep, struct tm *p_tm) in php_localtime_r() argument
182 tmp = localtime(timep); in php_localtime_r()
233 PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm) in php_gmtime_r() argument
239 tmp = gmtime(timep); in php_gmtime_r()
H A Dphp_reentrancy.h63 PHPAPI struct tm *php_localtime_r(const time_t *const timep, struct tm *p_tm);
67 struct tm *localtime_r(const time_t *const timep, struct tm *p_tm);
96 PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm);
100 struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm);

Completed in 9 milliseconds