Lines Matching refs:buf
55 PHPAPI char *php_ctime_r(const time_t *clock, char *buf) in php_ctime_r() argument
57 if (ctime_r(clock, buf) == buf) in php_ctime_r()
58 return (buf); in php_ctime_r()
62 PHPAPI char *php_asctime_r(const struct tm *tm, char *buf) in php_asctime_r() argument
64 if (asctime_r(tm, buf) == buf) in php_asctime_r()
65 return (buf); in php_asctime_r()
85 PHPAPI char *php_ctime_r(const time_t *clock, char *buf) in php_ctime_r() argument
87 if (ctime_r(clock, buf, 26) != -1) in php_ctime_r()
88 return (buf); in php_ctime_r()
92 PHPAPI char *php_asctime_r(const struct tm *tm, char *buf) in php_asctime_r() argument
94 if (asctime_r(tm, buf, 26) != -1) in php_asctime_r()
95 return (buf); in php_asctime_r()
131 PHPAPI char *php_ctime_r(const time_t *clock, char *buf) in php_ctime_r() argument
139 strcpy(buf, tmp); in php_ctime_r()
140 tmp = buf; in php_ctime_r()
152 PHPAPI char *php_asctime_r(const struct tm *tm, char *buf) in php_asctime_r() argument
160 strcpy(buf, tmp); in php_asctime_r()
161 tmp = buf; in php_asctime_r()