Symbol: _fcntl
lib/libc/gen/dup3.c
57
return (_fcntl(oldfd, F_DUP3FD | (fdflags << F_DUP3FD_SHIFT), newfd));
lib/libc/gen/fdopendir.c
54
flags = _fcntl(fd, F_GETFD, 0);
lib/libc/gen/fdopendir.c
59
rc = _fcntl(fd, F_SETFD, flags | FD_CLOEXEC);
lib/libc/gen/opendir2.c
256
return (_fcntl(fd, F_ISUNIONSTACK, 0) > 0);
lib/libc/gen/popen.c
145
(void)_fcntl(pdes[1], F_SETFD, 0);
lib/libc/gen/popen.c
147
(void)_fcntl(pdes[1], F_SETFD, 0);
lib/libc/gen/popen.c
152
(void)_fcntl(pdes[0], F_SETFD, 0);
lib/libc/gen/popen.c
178
(void)_fcntl(fileno(iop), F_SETFD, 0);
lib/libc/gen/posix_spawn.c
180
if (_fcntl(fae->fae_fildes, F_SETFD, 0) == -1)
lib/libc/gen/posix_spawn.c
187
if (_fcntl(fae->fae_newfildes, F_SETFD, 0) == -1)
lib/libc/gen/wordexp.c
173
_fcntl(pdes[1], F_SETFD, 0)) < 0)
lib/libc/gen/wordexp.c
175
if (_fcntl(pdesw[0], F_SETFD, 0) < 0)
lib/libc/include/namespace.h
65
#define fcntl _fcntl
lib/libc/net/nscachedcli.c
212
_fcntl(client_socket, F_SETFL, O_NONBLOCK);
lib/libc/net/rcmd.c
160
_fcntl(s, F_SETOWN, pid);
lib/libc/rpc/clnt_generic.c
426
if ((nfd = _fcntl(fd, F_DUPFD, __rpc_minfd)) == -1)
lib/libc/rpc/clnt_simple.c
179
_fcntl(fd, F_SETFD, 1); /* make it "close on exec" */
lib/libc/rpc/key_call.c
406
_fcntl(fd, F_SETFD, 1); /* make it "close on exec" */
lib/libc/rpc/svc_vc.c
333
flags = _fcntl(sock, F_GETFL, 0);
lib/libc/rpc/svc_vc.c
336
if (_fcntl(sock, F_SETFL, flags | O_NONBLOCK) == -1)
lib/libc/stdio/fdopen.c
67
if ((fdflags = _fcntl(fd, F_GETFL, 0)) < 0)
lib/libc/stdio/fdopen.c
80
tmp = _fcntl(fd, F_GETFD, 0);
lib/libc/stdio/fdopen.c
86
rc = _fcntl(fd, F_SETFD, tmp | FD_CLOEXEC);
lib/libc/stdio/freopen.c
104
if (_fcntl(fp->_file, F_SETFL, dflags) < 0) {
lib/libc/stdio/freopen.c
117
fdflags = _fcntl(fp->_file, F_GETFD, 0);
lib/libc/stdio/freopen.c
119
(void) _fcntl(fp->_file, F_SETFD,
lib/libc/stdio/freopen.c
207
if ((oflags & O_CLOEXEC ? _fcntl(f, F_DUP2FD_CLOEXEC, wantfd) :
lib/libc/stdio/freopen.c
84
if ((dflags = _fcntl(fp->_file, F_GETFL)) < 0) {
lib/libc/yp/yplib.c
528
if (_fcntl(ysd->dom_socket, F_SETFD, 1) == -1)
libexec/rtld-elf/rtld-libc/namespace.h
32
#define fcntl _fcntl