Home | History | Annotate | Download | only in slirp-android

Lines Matching refs:opt

747         unsigned long opt = 1;
749 int opt = 1;
752 ioctlsocket(fd, FIONBIO, &opt);
754 int opt;
756 opt = fcntl(fd, F_GETFL, 0);
757 opt |= O_NONBLOCK;
758 fcntl(fd, F_SETFL, opt);
767 unsigned long opt = 0;
769 int opt = 0;
772 ioctlsocket(fd, FIONBIO, &opt);
774 int opt;
776 opt = fcntl(fd, F_GETFL, 0);
777 opt &= ~O_NONBLOCK;
778 fcntl(fd, F_SETFL, opt);