Searched refs:statcode (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.2-release/contrib/apr/misc/unix/
H A Derrorcodes.c39 static char *apr_error_string(apr_status_t statcode) argument
41 switch (statcode) {
350 static char *native_strerror(apr_status_t statcode, char *buf, argument
353 if (strerror_r(statcode, buf, bufsize) < 0) {
372 static char *native_strerror(apr_status_t statcode, char *buf, argument
378 msg = strerror_r(statcode, buf, bufsize);
390 static char *native_strerror(apr_status_t statcode, char *buf, argument
395 sprintf(err, "Native Error #%d", statcode);
398 const char *err = strerror(statcode);
409 APR_DECLARE(char *) apr_strerror(apr_status_t statcode, cha argument
[all...]
/freebsd-10.2-release/contrib/subversion/subversion/libsvn_subr/
H A Derror.c661 svn_strerror(apr_status_t statcode, char *buf, apr_size_t bufsize)
666 if (defn->errcode == (svn_errno_t)statcode)
672 return apr_strerror(statcode, buf, bufsize); argument
676 svn_error_symbolic_name(apr_status_t statcode)
681 if (defn->errcode == (svn_errno_t)statcode)
685 if (statcode == SVN_NO_ERROR)
657 svn_strerror(apr_status_t statcode, char *buf, apr_size_t bufsize) argument
/freebsd-10.2-release/contrib/subversion/subversion/include/
H A Dsvn_error.h60 /** Put an English description of @a statcode into @a buf and return @a buf,
61 * NULL-terminated. @a statcode is either an svn error or apr error.
64 svn_strerror(apr_status_t statcode,
96 svn_error_symbolic_name(apr_status_t statcode);
/freebsd-10.2-release/contrib/apr/include/
H A Dapr_errno.h48 * @param statcode The error code to get a string for.
52 APR_DECLARE(char *) apr_strerror(apr_status_t statcode, char *buf,
67 * @def APR_TO_OS_ERROR(apr_status_t statcode)
71 * @warning macro implementation; the statcode argument may be evaluated
72 * multiple times. If the statcode was not created by apr_get_os_error
88 * @warning This is a macro implementation; the statcode argument may be evaluated
89 * multiple times. If the statcode was not created by apr_get_os_error
91 * errno, or calls a SetLastError() style function, unfolding statcode
105 * @warning This is a macro implementation; the statcode argument may be evaluated
106 * multiple times. If the statcode wa
[all...]

Completed in 108 milliseconds