Searched refs:strerrbuf (Results 1 - 3 of 3) sorted by relevance

/macosx-10.9.5/Heimdal-323.92.1/lib/roken/
H A Dstrerror_r.c46 rk_strerror_r(int eno, char * strerrbuf, size_t buflen) argument
50 err = strerror_s(strerrbuf, buflen, eno);
53 code = sprintf_s(strerrbuf, buflen, "Error % occurred.", eno);
63 rk_strerror_r(int eno, char *strerrbuf, size_t buflen) argument
68 str = strerror_r(eno, strerrbuf, buflen);
69 if (str != strerrbuf)
70 if (strlcpy(strerrbuf, str, buflen) >= buflen)
75 ret = strlcpy(strerrbuf, strerror(eno), buflen);
/macosx-10.9.5/Libc-997.90.3/string/FreeBSD/
H A Dstrerror.c83 strerror_r(int errnum, char *strerrbuf, size_t buflen) argument
99 strerrbuf, buflen);
102 if (strlcpy(strerrbuf,
/macosx-10.9.5/apache-786.1/httpd/support/
H A Drotatelogs.c315 char strerrbuf[120]; local
322 apr_strerror(rv, strerrbuf, sizeof strerrbuf);
327 rv, cur_offset, nMessCount, strerrbuf);

Completed in 197 milliseconds