fcntl             931 ext/dba/dba.c  				int flags = fcntl(info->fd, F_GETFL);
fcntl             932 ext/dba/dba.c  				fcntl(info->fd, F_SETFL, flags & ~O_APPEND);
fcntl             230 ext/opcache/ZendAccelerator.c 	if (fcntl(lock_file, F_SETLK, &restart_in_progress) == -1) {
fcntl             246 ext/opcache/ZendAccelerator.c 	if (fcntl(lock_file, F_SETLK, &restart_finished) == -1) {
fcntl             258 ext/opcache/ZendAccelerator.c 		if (fcntl(lock_file, F_GETLK, &restart_check) == -1) {
fcntl             283 ext/opcache/ZendAccelerator.c 	if (fcntl(lock_file, F_SETLK, &mem_usage_lock) == -1) {
fcntl             302 ext/opcache/ZendAccelerator.c 	if (fcntl(lock_file, F_SETLK, &mem_usage_unlock) == -1) {
fcntl             315 ext/opcache/ZendAccelerator.c 	if (fcntl(lock_file, F_SETLK, &mem_usage_unlock_all) == -1) {
fcntl             630 ext/opcache/ZendAccelerator.c 		if (fcntl(lock_file, F_GETLK, mem_usage_check) == -1) {
fcntl             652 ext/opcache/ZendAccelerator.c 	if (fcntl(lock_file, F_GETLK, &mem_usage_check) == -1) {
fcntl              93 ext/opcache/zend_shared_alloc.c 	val = fcntl(lock_file, F_GETFD, 0);
fcntl              95 ext/opcache/zend_shared_alloc.c 	fcntl(lock_file, F_SETFD, val);
fcntl             393 ext/opcache/zend_shared_alloc.c 		if (fcntl(lock_file, F_SETLKW, &mem_write_lock) == -1) {
fcntl             413 ext/opcache/zend_shared_alloc.c 	if (fcntl(lock_file, F_SETLK, &mem_write_unlock) == -1) {
fcntl             213 ext/session/mod_files.c 			if (fcntl(data->fd, F_SETFD, FD_CLOEXEC)) {
fcntl             501 ext/sockets/sockets.c 	m = fcntl(sock->bsd_socket, F_GETFL);
fcntl            2294 ext/sockets/sockets.c     t = fcntl(socket, F_GETFL);
fcntl            25831 ext/sqlite3/libsqlite/sqlite3.c   { "fcntl",        (sqlite3_syscall_ptr)fcntl,      0  },
fcntl              67 ext/standard/flock_compat.c 	ret = fcntl(fd, operation & LOCK_NB ? F_SETLK : F_SETLKW, &flck);
fcntl             948 ext/standard/proc_open.c 				fcntl(descriptors[i].parentend, F_SETFD, FD_CLOEXEC);
fcntl             102 main/fastcgi.c 		if (fcntl(fd, F_SETLKW, &lock) != -1) {		\
fcntl             118 main/fastcgi.c 			if (fcntl(fd, F_SETLK, &lock) != -1) {	\
fcntl             296 main/network.c 	 save = fcntl(sock, F_GETFL, 0); \
fcntl             297 main/network.c 	 fcntl(sock, F_SETFL, save | O_NONBLOCK)
fcntl             299 main/network.c 	 fcntl(sock, F_SETFL, save)
fcntl            1151 main/network.c 	int flags = fcntl(socketd, F_GETFL);
fcntl            1163 main/network.c 	if (fcntl(socketd, F_SETFL, flags) == -1) {
fcntl             619 main/streams/plain_wrapper.c 			flags = fcntl(fd, F_GETFL, 0);
fcntl             626 main/streams/plain_wrapper.c 			if (-1 == fcntl(fd, F_SETFL, flags))
fcntl              62 sapi/fpm/fpm/fpm_log.c 		if (0 > fcntl(fd, F_SETFD, fcntl(fd, F_GETFD) | FD_CLOEXEC)) {
fcntl             196 sapi/fpm/fpm/fpm_signals.c 	if (0 > fcntl(sp[0], F_SETFD, FD_CLOEXEC) || 0 > fcntl(sp[1], F_SETFD, FD_CLOEXEC)) {
fcntl              33 sapi/fpm/fpm/fpm_sockets.h 	int flags = fcntl(fd, F_GETFL);
fcntl              44 sapi/fpm/fpm/fpm_sockets.h 	return fcntl(fd, F_SETFL, flags);
fcntl             322 sapi/fpm/fpm/fpm_stdio.c 	if (0 > fcntl(fd, F_SETFD, fcntl(fd, F_GETFD) | FD_CLOEXEC)) {
fcntl             256 sapi/litespeed/lsapilib.c     int val = fcntl( fd, F_GETFL, 0 );
fcntl             261 sapi/litespeed/lsapilib.c             return fcntl( fd, F_SETFL, val | O_NONBLOCK );
fcntl             268 sapi/litespeed/lsapilib.c             return fcntl( fd, F_SETFL, val &(~O_NONBLOCK) );
fcntl            2323 sapi/litespeed/lsapilib.c     fcntl( fd, F_SETFD, FD_CLOEXEC );
fcntl            1187 sapi/phpdbg/phpdbg.c 	flags = fcntl(PHPDBG_G(io)[PHPDBG_STDIN].fd, F_GETFL, 0);
fcntl            1188 sapi/phpdbg/phpdbg.c 	fcntl(PHPDBG_G(io)[PHPDBG_STDIN].fd, F_SETFL, flags | O_NONBLOCK);
fcntl            1229 sapi/phpdbg/phpdbg.c 	fcntl(PHPDBG_G(io)[PHPDBG_STDIN].fd, F_SETFL, flags);
fcntl             375 sapi/phpdbg/phpdbg_utils.c 	fcntl(STDIN_FILENO, F_SETOWN, getpid());
fcntl             376 sapi/phpdbg/phpdbg_utils.c 	flags = fcntl(STDIN_FILENO, F_GETFL);
fcntl             377 sapi/phpdbg/phpdbg_utils.c 	fcntl(STDIN_FILENO, F_SETFL, flags | FASYNC);