Searched defs:fcntl (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/
H A DSysCalls.c31 #include <sys/fcntl.h>
257 /** The fcntl() function shall perform the operations described below on open
260 The available values for cmd are defined in <fcntl.h> and are as follows:
269 - F_GETFD - Get the file descriptor flags defined in <fcntl.h> that are
273 - F_SETFD - Set the file descriptor flags defined in <fcntl.h>, that are
280 <fcntl.h>, for the file description associated with fildes.
283 <fcntl.h>. File status flags and file access modes are
287 - F_SETFL - Set the file status flags, defined in <fcntl.h>, for the file
291 flags, as defined in <fcntl.h>, that are set in arg shall
308 The fcntl() functio
334 fcntl (int fildes, int cmd, ...) function
[all...]
/vbox/src/VBox/ValidationKit/common/
H A Dutils.py233 from fcntl import FD_CLOEXEC, F_GETFD, F_SETFD, fcntl; # pylint: disable=F0401 namespace
239 fcntl(oFile, F_SETFD, fcntl(oFile, F_GETFD) | FD_CLOEXEC);
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/
H A Dsockets.h282 * Commands for ioctlsocket(), taken from the BSD file fcntl.h.
423 #define fcntl(a,b,c) lwip_fcntl(a,b,c) macro

Completed in 50 milliseconds