timep              63 main/php_reentrancy.h PHPAPI struct tm *php_localtime_r(const time_t *const timep, struct tm *p_tm);
timep              67 main/php_reentrancy.h struct tm *localtime_r(const time_t *const timep, struct tm *p_tm);
timep              96 main/php_reentrancy.h PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm);
timep             100 main/php_reentrancy.h struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm);
timep              84 main/reentrancy.c PHPAPI struct tm *php_localtime_r(const time_t *const timep, struct tm *p_tm)
timep              86 main/reentrancy.c 	if (localtime_r(timep, p_tm) == 0)
timep             105 main/reentrancy.c PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm)
timep             107 main/reentrancy.c 	if (gmtime_r(timep, p_tm) == 0)
timep             116 main/reentrancy.c PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm)
timep             119 main/reentrancy.c         if (((struct tm*)gmtime_r(timep, p_tm)) == p_tm)
timep             176 main/reentrancy.c PHPAPI struct tm *php_localtime_r(const time_t *const timep, struct tm *p_tm)
timep             182 main/reentrancy.c 	tmp = localtime(timep);
timep             233 main/reentrancy.c PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm)
timep             239 main/reentrancy.c 	tmp = gmtime(timep);