Searched refs:sys_errno (Results 1 - 7 of 7) sorted by relevance

/netbsd-current/external/mit/libuv/dist/src/win/
H A Derror.c66 int uv_translate_sys_error(int sys_errno) { argument
67 if (sys_errno <= 0) {
68 return sys_errno; /* If < 0 then it's already a libuv error. */
71 switch (sys_errno) {
H A Dfs.c76 #define SET_REQ_WIN32_ERROR(req, sys_errno) \
78 req->sys_errno_ = (sys_errno); \
82 #define SET_REQ_UV_ERROR(req, uv_errno, sys_errno) \
85 req->sys_errno_ = (sys_errno); \
/netbsd-current/crypto/external/bsd/netpgp/dist/src/lib/
H A Derrors.h129 int sys_errno; /* irrelevent unless errcode == member in struct:pgp_error
H A Dmisc.c306 * \param sys_errno System errno (used if errcode=PGP_E_SYSTEM_ERROR)
315 int sys_errno, const char *file, int line, const char *fmt,...)
344 err->sys_errno = sys_errno;
361 printf("system error %d returned from %s()\n", err->sys_errno,
314 pgp_push_error(pgp_error_t **errstack, pgp_errcode_t errcode, int sys_errno, const char *file, int line, const char *fmt,...) argument
/netbsd-current/external/bsd/libbind/dist/isc/
H A Dev_connects.c240 evTryAccept(evContext opaqueCtx, evConnID id, int *sys_errno) { argument
275 *sys_errno = new->ioErrno;
/netbsd-current/external/mit/libuv/dist/src/unix/
H A Dcore.c1262 int uv_translate_sys_error(int sys_errno) { argument
1264 return sys_errno <= 0 ? sys_errno : -sys_errno;
/netbsd-current/external/mit/libuv/dist/include/
H A Duv.h392 UV_EXTERN int uv_translate_sys_error(int sys_errno);

Completed in 130 milliseconds