Lines Matching refs:buf
61 PHPAPI char *php_ctime_r(const time_t *clock, char *buf) in php_ctime_r() argument
63 if (ctime_r(clock, buf) == buf) in php_ctime_r()
64 return (buf); in php_ctime_r()
68 PHPAPI char *php_asctime_r(const struct tm *tm, char *buf) in php_asctime_r() argument
70 if (asctime_r(tm, buf) == buf) in php_asctime_r()
71 return (buf); in php_asctime_r()
91 PHPAPI char *php_ctime_r(const time_t *clock, char *buf) in php_ctime_r() argument
93 if (ctime_r(clock, buf, 26) != -1) in php_ctime_r()
94 return (buf); in php_ctime_r()
98 PHPAPI char *php_asctime_r(const struct tm *tm, char *buf) in php_asctime_r() argument
100 if (asctime_r(tm, buf, 26) != -1) in php_asctime_r()
101 return (buf); in php_asctime_r()
197 PHPAPI char *php_ctime_r(const time_t *clock, char *buf) in php_ctime_r() argument
204 strcpy(buf, tmp); in php_ctime_r()
208 return buf; in php_ctime_r()
215 PHPAPI char *php_asctime_r(const struct tm *tm, char *buf) in php_asctime_r() argument
222 strcpy(buf, tmp); in php_asctime_r()
226 return buf; in php_asctime_r()