p_tm               63 main/php_reentrancy.h PHPAPI struct tm *php_localtime_r(const time_t *const timep, struct tm *p_tm);
p_tm               67 main/php_reentrancy.h struct tm *localtime_r(const time_t *const timep, struct tm *p_tm);
p_tm               96 main/php_reentrancy.h PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm);
p_tm              100 main/php_reentrancy.h struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm);
p_tm               84 main/reentrancy.c PHPAPI struct tm *php_localtime_r(const time_t *const timep, struct tm *p_tm)
p_tm               86 main/reentrancy.c 	if (localtime_r(timep, p_tm) == 0)
p_tm               87 main/reentrancy.c 		return (p_tm);
p_tm              105 main/reentrancy.c PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm)
p_tm              107 main/reentrancy.c 	if (gmtime_r(timep, p_tm) == 0)
p_tm              108 main/reentrancy.c 		return (p_tm);
p_tm              116 main/reentrancy.c PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm)
p_tm              119 main/reentrancy.c         if (((struct tm*)gmtime_r(timep, p_tm)) == p_tm)
p_tm              120 main/reentrancy.c                 return (p_tm);
p_tm              176 main/reentrancy.c PHPAPI struct tm *php_localtime_r(const time_t *const timep, struct tm *p_tm)
p_tm              184 main/reentrancy.c 		memcpy(p_tm, tmp, sizeof(struct tm));
p_tm              185 main/reentrancy.c 		tmp = p_tm;
p_tm              233 main/reentrancy.c PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm)
p_tm              241 main/reentrancy.c 		memcpy(p_tm, tmp, sizeof(struct tm));
p_tm              242 main/reentrancy.c 		tmp = p_tm;