Home
last modified time | relevance | path

Searched refs:_errno (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/lib9p/pytest/
H A Dp9err.py11 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 Dctrl_iface_unix.c206 int _errno = errno; in wpa_supplicant_ctrl_iface_receive() local
209 _errno, strerror(_errno)); in wpa_supplicant_ctrl_iface_receive()
210 if (_errno == ENOBUFS || _errno == EAGAIN) { in wpa_supplicant_ctrl_iface_receive()
1000 int _errno; in wpa_supplicant_ctrl_iface_send() local
1017 _errno = errno; in wpa_supplicant_ctrl_iface_send()
1019 _errno, strerror(_errno)); in wpa_supplicant_ctrl_iface_send()
1023 if (dst->errors > 10 || _errno == ENOENT || _errno == EPERM) { in wpa_supplicant_ctrl_iface_send()
1030 if (_errno == ENOBUFS || _errno == EAGAIN) { in wpa_supplicant_ctrl_iface_send()
/freebsd/contrib/file/python/
H A Dmagic.py114 _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 Dsandbox-seccomp-filter.c97 #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 Dbss_dgram.c107 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 Dsanitizer_errno.h31 # define __errno_location _errno
H A Dsanitizer_platform_limits_netbsd.h102 int _errno; member
/freebsd/contrib/sendmail/include/sm/
H A Dstring.h89 strerror __P((int _errno));
/freebsd/contrib/wpa/src/radius/
H A Dradius_client.c343 int _errno = errno; in radius_client_handle_send_error() local
345 if (_errno == ENOTCONN || _errno == EDESTADDRREQ || _errno == EINVAL || in radius_client_handle_send_error()
346 _errno == EBADF || _errno == ENETUNREACH || _errno == EACCES) { in radius_client_handle_send_error()
/freebsd/contrib/wpa/src/eap_server/
H A Deap_sim_db.c867 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/hostapd/
H A Dctrl_iface.c5246 int _errno = errno; in hostapd_ctrl_iface_send_internal() local
5251 if (dst->errors > 10 || _errno == ENOENT) { in hostapd_ctrl_iface_send_internal()