Searched refs:_errno (Results 1 – 11 of 11) sorted by relevance
/freebsd/contrib/lib9p/pytest/ |
H A D | p9err.py | 11 import errno as _errno namespace 18 _errno.ENOTEMPTY: _errno.EPERM, 19 _errno.EDQUOT: _errno.EPERM, 20 _errno.ENOSYS: _errno.EPERM, 26 for _i in range(1, _errno.ERANGE): 100 if hasattr(_errno, _i) and hasattr(_lerrno, _i): 101 _native_to_dotl[getattr(_errno, _i)] = getattr(_lerrno, _i) 123 return _native_to_dotu.get(errnum, _errno.EIO) # default to EIO
|
/freebsd/contrib/wpa/wpa_supplicant/ |
H A D | ctrl_iface_unix.c | 209 int _errno = errno; in wpa_supplicant_ctrl_iface_receive() local 212 _errno, strerror(_errno)); in wpa_supplicant_ctrl_iface_receive() 213 if (_errno == ENOBUFS || _errno == EAGAIN) { in wpa_supplicant_ctrl_iface_receive() 1003 int _errno; in wpa_supplicant_ctrl_iface_send() local 1020 _errno = errno; in wpa_supplicant_ctrl_iface_send() 1022 _errno, strerror(_errno)); in wpa_supplicant_ctrl_iface_send() 1026 if (dst->errors > 10 || _errno == ENOENT || _errno == EPERM) { in wpa_supplicant_ctrl_iface_send() 1033 if (_errno == ENOBUFS || _errno == EAGAIN) { in wpa_supplicant_ctrl_iface_send()
|
/freebsd/contrib/file/python/ |
H A D | magic.py | 114 _errno = _libraries['magic'].magic_errno variable 115 _errno.restype = c_int 116 _errno.argtypes = [magic_t] 249 return _errno(self._magic_t)
|
/freebsd/crypto/openssh/ |
H A D | sandbox-seccomp-filter.c | 97 #define SC_DENY(_nr, _errno) \ argument 99 BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_ERRNO|(_errno)) 138 #define SC_DENY_UNLESS_ARG_MASK(_nr, _arg_nr, _arg_mask, _errno) \ argument 151 BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_ERRNO|(_errno)), \ 155 #define SC_DENY_UNLESS_MASK(_nr, _arg_nr, _arg_val, _errno) \ argument
|
/freebsd/crypto/openssl/crypto/bio/ |
H A D | bss_dgram.c | 107 unsigned int _errno; member 124 unsigned int _errno; member 318 data->_errno = get_last_socket_error(); in dgram_read() 346 data->_errno = get_last_socket_error(); in dgram_write() 688 d_errno = (data->_errno == WSAETIMEDOUT); in dgram_ctrl() 690 d_errno = (data->_errno == EAGAIN); in dgram_ctrl() 694 data->_errno = 0; in dgram_ctrl() 700 if (data->_errno == EMSGSIZE) { in dgram_ctrl() 702 data->_errno = 0; in dgram_ctrl() 1166 data->_errno = get_last_socket_error(); in dgram_sctp_read() [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_errno.h | 31 # define __errno_location _errno
|
H A D | sanitizer_platform_limits_netbsd.h | 102 int _errno; member
|
/freebsd/contrib/sendmail/include/sm/ |
H A D | string.h | 89 strerror __P((int _errno));
|
/freebsd/contrib/wpa/src/eap_server/ |
H A D | eap_sim_db.c | 867 int _errno = 0; in eap_sim_db_send() local 870 _errno = errno; in eap_sim_db_send() 875 if (_errno == ENOTCONN || _errno == EDESTADDRREQ || _errno == EINVAL || in eap_sim_db_send() 876 _errno == ECONNREFUSED) { in eap_sim_db_send()
|
/freebsd/contrib/wpa/src/radius/ |
H A D | radius_client.c | 351 int _errno = errno; in radius_client_handle_send_error() local 353 if (_errno == ENOTCONN || _errno == EDESTADDRREQ || _errno == EINVAL || in radius_client_handle_send_error() 354 _errno == EBADF || _errno == ENETUNREACH || _errno == EACCES) { in radius_client_handle_send_error()
|
/freebsd/contrib/wpa/hostapd/ |
H A D | ctrl_iface.c | 5826 int _errno = errno; in hostapd_ctrl_iface_send_internal() local 5831 if (dst->errors > 10 || _errno == ENOENT) { in hostapd_ctrl_iface_send_internal()
|