Searched refs:statcode (Results 1 – 4 of 4) sorted by relevance
| /freebsd-13.1/contrib/apr/misc/unix/ |
| H A D | errorcodes.c | 39 static char *apr_error_string(apr_status_t statcode) in apr_error_string() argument 41 switch (statcode) { in apr_error_string() 385 msg = strerror_r(statcode, buf, bufsize); in native_strerror() 402 sprintf(err, "Native Error #%d", statcode); in native_strerror() 405 const char *err = strerror(statcode); in native_strerror() 419 if (statcode < APR_OS_START_ERROR) { in apr_strerror() 422 else if (statcode < APR_OS_START_USERERR) { in apr_strerror() 425 else if (statcode < APR_OS_START_EAIERR) { in apr_strerror() 428 else if (statcode < APR_OS_START_SYSERR) { in apr_strerror() 430 statcode -= APR_OS_START_EAIERR; in apr_strerror() [all …]
|
| /freebsd-13.1/contrib/subversion/subversion/libsvn_subr/ |
| H A D | error.c | 762 svn_strerror(apr_status_t statcode, char *buf, apr_size_t bufsize) in svn_strerror() argument 767 if (defn->errcode == (svn_errno_t)statcode) in svn_strerror() 773 return apr_strerror(statcode, buf, bufsize); in svn_strerror() 782 svn_error_symbolic_name(apr_status_t statcode) in svn_error_symbolic_name() argument 790 if (defn->errcode == (svn_errno_t)statcode) in svn_error_symbolic_name() 794 if (statcode == APR_SUCCESS) in svn_error_symbolic_name() 801 if (svn__errno[i].errcode == (int)statcode) in svn_error_symbolic_name() 807 if (svn__apr_errno[i].errcode == (int)statcode) in svn_error_symbolic_name()
|
| /freebsd-13.1/contrib/subversion/subversion/include/ |
| H A D | svn_error.h | 64 svn_strerror(apr_status_t statcode, 96 svn_error_symbolic_name(apr_status_t statcode);
|
| /freebsd-13.1/contrib/apr/include/ |
| H A D | apr_errno.h | 52 APR_DECLARE(char *) apr_strerror(apr_status_t statcode, char *buf,
|