Home
last modified time | relevance | path

Searched refs:errval (Results 1 – 7 of 7) sorted by relevance

/third_party/NuttX/fs/nfs/
Drpc_clnt.c550 int errval; in rpcclnt_reconnect() local
575 errval = 0; in rpcclnt_reconnect()
582 errval = get_errno(); in rpcclnt_reconnect()
583 nfs_debug_error("psock_bind failed: %d\n", errval); in rpcclnt_reconnect()
586 while (errval == EADDRINUSE && trycount > 0); in rpcclnt_reconnect()
590 nfs_debug_error("psock_bind failed: %d, port = %d\n", errval, tport); in rpcclnt_reconnect()
597 errval = get_errno(); in rpcclnt_reconnect()
599 ntohs(((struct sockaddr_in *)saddr)->sin_port), errval); in rpcclnt_reconnect()
605 return errval; in rpcclnt_reconnect()
668 int errval; in rpcclnt_connect() local
[all …]
/third_party/ltp/testcases/kernel/syscalls/epoll/
Depoll-ltp.c149 #define PROTECT_REGION_EXIT(errval) return (errval); argument
151 #define PROTECT_REGION_END(result, errval) \ argument
158 (result) = (errval); \
174 #define PROTECT_FUNC(fn, errval, epoll_fd) ( \ argument
188 kid_status = (errval); \
/third_party/boost/libs/filesystem/src/
Doperations.cpp263 bool not_found_error(int errval) BOOST_NOEXCEPT; // forward declaration
369 inline bool not_found_error(int errval) BOOST_NOEXCEPT in not_found_error() argument
371 return errval == ENOENT || errval == ENOTDIR; in not_found_error()
563 inline bool not_found_error(int errval) BOOST_NOEXCEPT in not_found_error() argument
565 return errval == ERROR_FILE_NOT_FOUND in not_found_error()
566 || errval == ERROR_PATH_NOT_FOUND in not_found_error()
567 || errval == ERROR_INVALID_NAME // "tools/jam/src/:sys:stat.h", "//foo" in not_found_error()
568 || errval == ERROR_INVALID_DRIVE // USB card reader with no card inserted in not_found_error()
569 || errval == ERROR_NOT_READY // CD/DVD drive with no disc inserted in not_found_error()
570 || errval == ERROR_INVALID_PARAMETER // ":sys:stat.h" in not_found_error()
[all …]
/third_party/glib/glib/
Dgiochannel.c1519 int errval; in g_io_channel_fill_buffer() local
1539 errval = errno; in g_io_channel_fill_buffer()
1553 switch (errval) in g_io_channel_fill_buffer()
1578 g_assert (errval != EBADF); /* The converter should be open */ in g_io_channel_fill_buffer()
1580 _("Error during conversion: %s"), g_strerror (errval)); in g_io_channel_fill_buffer()
Dgslice.c1730 smc_tree_abort (int errval) in smc_tree_abort() argument
1732 const char *syserr = strerror (errval); in smc_tree_abort()
/third_party/googletest/googlemock/include/gmock/
Dgmock-actions.h1331 SetErrnoAndReturn(int errval, T result) {
1333 internal::SetErrnoAndReturnAction<T>(errval, result));
/third_party/ffmpeg/libavcodec/
Dalsdec.c452 #define MISSING_ERR(cond, str, errval) \ in check_specific_config() argument
457 error = errval; \ in check_specific_config()