/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/beos/ |
H A D | bproc.c | 110 fcntl(0, F_SETFL, flags & ~O_NONBLOCK); 121 fcntl(1, F_SETFL, flags & ~O_NONBLOCK); 132 fcntl(2, F_SETFL, flags & ~O_NONBLOCK);
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/sys/ |
H A D | fcntl.h | 94 #define F_SETFL 4 ///< set file status flags macro
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/ |
H A D | uxproces.c | 296 fcntl(fd_map[0], F_SETFL, flags & ~O_NONBLOCK); 302 fcntl(fd_map[1], F_SETFL, flags & ~O_NONBLOCK); 308 fcntl(fd_map[2], F_SETFL, flags & ~O_NONBLOCK); 357 fcntl(0, F_SETFL, flags & ~O_NONBLOCK); 368 fcntl(1, F_SETFL, flags & ~O_NONBLOCK); 379 fcntl(2, F_SETFL, flags & ~O_NONBLOCK); 976 fcntl(pr_wp.pipefd[0], F_SETFL, flags | _PR_NBIO_FLAG); 978 fcntl(pr_wp.pipefd[1], F_SETFL, flags | _PR_NBIO_FLAG);
|
H A D | unix.c | 2024 fcntl(_pr_md_pipefd[0], F_SETFL, flags | O_NONBLOCK); 2026 fcntl(_pr_md_pipefd[1], F_SETFL, flags | O_NONBLOCK); 2209 fcntl(osfd, F_SETFL, flags | FNDELAY); 2211 fcntl(osfd, F_SETFL, flags | O_NONBLOCK);
|
/vbox/src/VBox/RDP/client-1.8.3/ |
H A D | parallel.c | 101 if (fcntl(parallel_fd, F_SETFL, O_NONBLOCK) == -1)
|
H A D | disk.c | 504 if (fcntl(handle, F_SETFL, O_NONBLOCK) == -1)
|
H A D | serial.c | 613 if (fcntl(*handle, F_SETFL, O_NONBLOCK) == -1)
|
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/ |
H A D | sockets.h | 326 #ifndef F_SETFL 327 #define F_SETFL 4 macro
|
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/linux/ |
H A D | tap.c | 85 ret = linux_fcntl(nic->fd, F_SETFL, O_NONBLOCK);
|
/vbox/src/VBox/Runtime/r3/posix/ |
H A D | pipe-posix.cpp | 351 || fcntl(pThis->fd, F_SETFL, fFlags & ~O_NONBLOCK) != -1) 413 || fcntl(pThis->fd, F_SETFL, fFlags | O_NONBLOCK) != -1)
|
H A D | timer-posix.cpp | 469 ioctl(fh, F_SETFL, O_ASYNC);
|
/vbox/src/recompiler/tests/ |
H A D | linux-test.c | 369 chk_error(fcntl(fds[0], F_SETFL, O_NONBLOCK)); 370 chk_error(fcntl(fds[1], F_SETFL, O_NONBLOCK));
|
/vbox/src/VBox/NetworkServices/NAT/ |
H A D | proxy.c | 341 status = fcntl(s, F_SETFL, sflags | O_NONBLOCK);
|
/vbox/src/recompiler/ |
H A D | cutils.c | 744 if (fcntl(fd, F_SETFL, flags | flag) == -1)
|
/vbox/src/VBox/Devices/Serial/ |
H A D | DrvHostSerial.cpp | 1246 fcntl(RTFileToNative(pThis->hDeviceFile), F_SETFL, O_NONBLOCK); 1248 fcntl(RTFileToNative(pThis->hDeviceFileR), F_SETFL, O_NONBLOCK);
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/ |
H A D | SysCalls.c | 287 - F_SETFL - Set the file status flags, defined in <fcntl.h>, for the file 326 - F_SETFL - Value other than -1. 367 case F_SETFL:
|
/vbox/src/VBox/Devices/Network/slirp/ |
H A D | misc.c | 101 fcntl(fd, F_SETFL, opt);
|
/vbox/src/libs/xpcom18a4/xpcom/threads/ |
H A D | plevent.c | 875 err = fcntl(self->eventPipe[0], F_SETFL, flags | O_NONBLOCK); 883 err = fcntl(self->eventPipe[1], F_SETFL, flags | O_NONBLOCK);
|
/vbox/src/VBox/Devices/Network/ |
H A D | DrvTAP.cpp | 976 if (fcntl(RTFileToNative(pThis->hFileDevice), F_SETFL, O_NONBLOCK) == -1)
|
/vbox/src/VBox/Main/src-server/linux/ |
H A D | HostHardwareLinux.cpp | 951 || fcntl(fd, F_SETFL, flags | O_NONBLOCK) < 0
|
/vbox/src/VBox/Runtime/r3/ |
H A D | tcp.cpp | 925 if (fcntl(hSocket, F_SETFL, fFlags) == -1)
|
H A D | socket.cpp | 369 if (fcntl(pThis->hNative, F_SETFL, fFlags) == -1)
|
/vbox/src/libs/libxml2-2.6.31/ |
H A D | nanohttp.c | 861 status = fcntl(s, F_SETFL, status);
|
/vbox/src/VBox/Devices/Network/lwip-new/src/api/ |
H A D | sockets.c | 2524 * Currently only the commands F_GETFL and F_SETFL are implemented. 2541 case F_SETFL:
|
/vbox/src/VBox/GuestHost/SharedClipboard/ |
H A D | x11-clipboard.cpp | 792 && (fcntl(pCtx->wakeupPipeRead, F_SETFL, O_NONBLOCK) != 0))
|