Home
last modified time | relevance | path

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

/php-src/main/
H A Dreentrancy.c78 PHPAPI struct tm *php_localtime_r(const time_t *const timep, struct tm *p_tm) in php_localtime_r() argument
80 if (localtime_r(timep, p_tm) == 0) in php_localtime_r()
99 PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm) in php_gmtime_r() argument
101 if (gmtime_r(timep, p_tm) == 0) in php_gmtime_r()
110 PHPAPI struct tm *php_localtime_r(const time_t *const timep, struct tm *p_tm) in php_localtime_r() argument
116 tmp = localtime(timep); in php_localtime_r()
173 PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm) in php_gmtime_r() argument
179 tmp = gmtime(timep); in php_gmtime_r()
H A Dphp_reentrancy.h52 PHPAPI struct tm *php_localtime_r(const time_t *const timep, struct tm *p_tm);
56 struct tm *localtime_r(const time_t *const timep, struct tm *p_tm);
85 PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm);
89 struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm);

Completed in 5 milliseconds