Home | History | Annotate | Download | only in lib

Lines Matching defs:status

85 	int status;
90 status = setsockopt(fd, SOL_SCTP, SCTP_SOCKOPT_CONNECTX, addrs,
93 /* Normalize status and set association id */
94 if (status > 0) {
96 *id = status;
101 if (status < 0 && errno != ENOPROTOOPT)
102 return status;
132 int status;
146 status = getsockopt(fd, SOL_SCTP, SCTP_SOCKOPT_CONNECTX3,
148 if (status == 0 || errno == EINPROGRESS) {
158 return status;
168 status = fcntl(fd, F_GETFL);
169 if (status < 0)
170 return status;
172 if (status & O_NONBLOCK) {