Home
last modified time | relevance | path

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

/src/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
/src/contrib/wpa/wpa_supplicant/ !
H A Dctrl_iface_unix.c209 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()
/src/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)
/src/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
/src/crypto/openssl/util/platform_symbols/ !
H A Dwindows-symbols.txt159 _errno
214 _errno
/src/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
/src/contrib/sendmail/include/sm/ !
H A Dstring.h89 strerror __P((int _errno));
/src/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()
/src/crypto/openssl/crypto/bio/ !
H A Dbss_dgram.c222 unsigned int _errno; member
446 data->_errno = get_last_socket_error(); in dgram_read()
474 data->_errno = get_last_socket_error(); in dgram_write()
905 d_errno = (data->_errno == WSAETIMEDOUT); in dgram_ctrl()
907 d_errno = (data->_errno == EAGAIN); in dgram_ctrl()
911 data->_errno = 0; in dgram_ctrl()
917 if (data->_errno == EMSGSIZE) { in dgram_ctrl()
919 data->_errno = 0; in dgram_ctrl()
2148 data->dgram._errno = get_last_socket_error(); in dgram_sctp_read()
2297 data->dgram._errno = get_last_socket_error(); in dgram_sctp_write()
/src/contrib/wpa/src/radius/ !
H A Dradius_client.c351 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()
/src/contrib/wpa/hostapd/ !
H A Dctrl_iface.c5826 int _errno = errno; in hostapd_ctrl_iface_send_internal() local
5831 if (dst->errors > 10 || _errno == ENOENT) { in hostapd_ctrl_iface_send_internal()