Searched refs:strerrbuf (Results 1 – 3 of 3) sorted by relevance
/freebsd/crypto/heimdal/lib/roken/ |
H A D | strerror_r.c | 46 rk_strerror_r(int eno, char * strerrbuf, size_t buflen) in rk_strerror_r() argument 50 err = strerror_s(strerrbuf, buflen, eno); in rk_strerror_r() 53 code = sprintf_s(strerrbuf, buflen, "Error % occurred.", eno); in rk_strerror_r() 63 rk_strerror_r(int eno, char *strerrbuf, size_t buflen) in rk_strerror_r() argument 68 str = strerror_r(eno, strerrbuf, buflen); in rk_strerror_r() 69 if (str != strerrbuf) in rk_strerror_r() 70 if (strlcpy(strerrbuf, str, buflen) >= buflen) in rk_strerror_r() 75 ret = strlcpy(strerrbuf, strerror(eno), buflen); in rk_strerror_r()
|
/freebsd/lib/libc/string/ |
H A D | strerror.c | 80 __strerror_rl(int errnum, char *strerrbuf, size_t buflen, locale_t locale) in __strerror_rl() argument 97 strerrbuf, buflen); in __strerror_rl() 100 if (strlcpy(strerrbuf, in __strerror_rl() 119 __ssp_real(strerror_r)(int errnum, char *strerrbuf, size_t buflen) in __ssp_real() 121 return (__strerror_rl(errnum, strerrbuf, buflen, __get_locale())); in __ssp_real()
|
/freebsd/lib/libc/include/ |
H A D | libc_private.h | 379 int __strerror_rl(int errnum, char *strerrbuf, size_t buflen,
|