Lines Matching defs:cbuf
109 __posix_asctime_r(const struct tm *t, char *cbuf)
119 cp = cbuf;
123 cp = cbuf;
145 return (cbuf);
153 asctime_r(const struct tm *t, char *cbuf, int buflen)
159 return (__posix_asctime_r(t, cbuf));
165 char *cbuf = tsdalloc(_T_CTIME, CBUFSIZ, NULL);
168 if (cbuf == NULL)
173 return (__posix_asctime_r(p, cbuf));
179 char *cbuf = tsdalloc(_T_CTIME, CBUFSIZ, NULL);
181 if (cbuf == NULL)
183 return (__posix_asctime_r(t, cbuf));