Searched refs:so_error (Results 1 - 14 of 14) sorted by relevance

/darwin-on-arm/xnu/bsd/kern/
H A Dkpi_socket.c104 while (TAILQ_EMPTY(&sock->so_comp) && sock->so_error == 0) {
106 sock->so_error = ECONNABORTED;
115 if (sock->so_error) {
116 error = sock->so_error;
117 sock->so_error = 0;
265 while ((sock->so_state & SS_ISCONNECTING) && sock->so_error == 0) {
273 error = sock->so_error;
274 sock->so_error = 0;
301 if ((sock->so_state & SS_ISCONNECTING) == 0 || sock->so_error) {
302 if (sock->so_error) {
[all...]
H A Duipc_syscalls.c399 while (TAILQ_EMPTY(&head->so_comp) && head->so_error == 0) {
401 head->so_error = ECONNABORTED;
420 if (head->so_error) {
421 error = head->so_error;
422 head->so_error = 0;
572 * Imputed: so_error error may be set from so_error, which
650 while ((so->so_state & SS_ISCONNECTING) && so->so_error == 0) {
664 error = so->so_error;
665 so->so_error
[all...]
H A Duipc_socket.c1359 * [so_error]:???
1408 if (so->so_error) {
1409 error = so->so_error;
1410 so->so_error = 0;
1482 * sosendcheck:??? [value from so_error]
2066 if (so->so_error) {
2069 error = so->so_error;
2071 so->so_error = 0;
2563 if (so->so_error || so->so_state & SS_CANTRCVMORE)
3542 optval = so->so_error;
[all...]
H A Duipc_socket2.c1721 so->so_comp.tqh_first || so->so_error);
1734 so->so_error);
1905 xso->so_error = so->so_error;
1936 xso->so_error = so->so_error;
H A Dsocket_info.c89 si->soi_error = so->so_error;
H A Dsys_generic.c2164 if (sp->so_error) {
2165 if ((sp->so_type == SOCK_STREAM) && ((sp->so_error == ECONNREFUSED) || (sp->so_error == ECONNRESET))) {
2182 if (sp->so_error) {
2183 if ((sp->so_type == SOCK_STREAM) && ((sp->so_error == ECONNREFUSED) || (sp->so_error == ECONNRESET))) {
H A Duipc_usrreq.c1807 so->so_error = errno;
/darwin-on-arm/xnu/bsd/sys/
H A Dsocketvar.h156 u_short so_error; /* error affecting connection */ member in struct:socket
371 u_short so_error; member in struct:xsocket
395 u_short so_error; member in struct:xsocket64
429 u_short so_error; member in struct:xsocket_n
/darwin-on-arm/xnu/bsd/netinet/
H A Din_pcblist.c126 xso->so_error = so->so_error;
H A Dtcp_usrreq.c411 if (so->so_error) {
412 error = so->so_error;
413 so->so_error = 0;
H A Dudp_usrreq.c868 inp->inp_socket->so_error = errno;
H A Dtcp_input.c2862 so->so_error = ECONNREFUSED;
2876 so->so_error = ECONNRESET;
H A Dtcp_subr.c920 so->so_error = errno;
/darwin-on-arm/xnu/bsd/netat/
H A Dsys_glue.c773 gref->atpcb_socket->so_error = errno;

Completed in 70 milliseconds