fcntl             385 core/ngx_cycle.c         if (fcntl(file[i].fd, F_SETFD, FD_CLOEXEC) == -1) {
fcntl            1224 core/ngx_cycle.c         if (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1) {
fcntl             205 event/modules/ngx_rtsig_module.c         if (fcntl(c->fd, F_SETOWN, ngx_pid) == -1) {
fcntl             222 event/modules/ngx_rtsig_module.c     if (fcntl(c->fd, F_SETFL, O_RDWR|O_NONBLOCK|O_ASYNC) == -1) {
fcntl             228 event/modules/ngx_rtsig_module.c     if (fcntl(c->fd, F_SETSIG, (int) signo) == -1) {
fcntl             234 event/modules/ngx_rtsig_module.c     if (fcntl(c->fd, F_SETOWN, ngx_pid) == -1) {
fcntl             241 event/modules/ngx_rtsig_module.c     if (fcntl(c->fd, F_SETAUXFL, O_ONESIGFD) == -1) {
fcntl             277 event/modules/ngx_rtsig_module.c     if (fcntl(c->fd, F_SETFL, O_RDWR|O_NONBLOCK) == -1) {
fcntl             411 os/unix/ngx_files.c     if (fcntl(fd, F_SETLK, &fl) == -1) {
fcntl             430 os/unix/ngx_files.c     if (fcntl(fd, F_SETLKW, &fl) == -1) {
fcntl             449 os/unix/ngx_files.c     if (fcntl(fd, F_SETLK, &fl) == -1) {
fcntl             484 os/unix/ngx_files.c     flags = fcntl(fd, F_GETFL);
fcntl             490 os/unix/ngx_files.c     return fcntl(fd, F_SETFL, flags | O_DIRECT);
fcntl             499 os/unix/ngx_files.c     flags = fcntl(fd, F_GETFL);
fcntl             505 os/unix/ngx_files.c     return fcntl(fd, F_SETFL, flags & ~O_DIRECT);
fcntl             277 os/unix/ngx_files.h #define ngx_read_ahead(fd, n)    fcntl(fd, F_READAHEAD, (int) n)
fcntl             305 os/unix/ngx_files.h #define ngx_directio_on(fd)      fcntl(fd, F_NOCACHE, 1)
fcntl             151 os/unix/ngx_process.c         if (fcntl(ngx_processes[s].channel[0], F_SETOWN, ngx_pid) == -1) {
fcntl             158 os/unix/ngx_process.c         if (fcntl(ngx_processes[s].channel[0], F_SETFD, FD_CLOEXEC) == -1) {
fcntl             166 os/unix/ngx_process.c         if (fcntl(ngx_processes[s].channel[1], F_SETFD, FD_CLOEXEC) == -1) {
fcntl              32 os/unix/ngx_socket.h #define ngx_nonblocking(s)  fcntl(s, F_SETFL, fcntl(s, F_GETFL) | O_NONBLOCK)
fcntl              35 os/unix/ngx_socket.h #define ngx_blocking(s)     fcntl(s, F_SETFL, fcntl(s, F_GETFL) & ~O_NONBLOCK)