Lines Matching refs:buf
57 PHPAPI char *php_ctime_r(const time_t *clock, char *buf) in php_ctime_r() argument
59 if (ctime_r(clock, buf) == buf) in php_ctime_r()
60 return (buf); in php_ctime_r()
64 PHPAPI char *php_asctime_r(const struct tm *tm, char *buf) in php_asctime_r() argument
66 if (asctime_r(tm, buf) == buf) in php_asctime_r()
67 return (buf); in php_asctime_r()
87 PHPAPI char *php_ctime_r(const time_t *clock, char *buf) in php_ctime_r() argument
89 if (ctime_r(clock, buf, 26) != -1) in php_ctime_r()
90 return (buf); in php_ctime_r()
94 PHPAPI char *php_asctime_r(const struct tm *tm, char *buf) in php_asctime_r() argument
96 if (asctime_r(tm, buf, 26) != -1) in php_asctime_r()
97 return (buf); in php_asctime_r()
133 PHPAPI char *php_ctime_r(const time_t *clock, char *buf) in php_ctime_r() argument
141 strcpy(buf, tmp); in php_ctime_r()
142 tmp = buf; in php_ctime_r()
154 PHPAPI char *php_asctime_r(const struct tm *tm, char *buf) in php_asctime_r() argument
162 strcpy(buf, tmp); in php_asctime_r()
163 tmp = buf; in php_asctime_r()