/PHP-5.3/sapi/fpm/fpm/ |
H A D | fpm_sockets.h | 33 int flags = fcntl(fd, F_GETFL); in fd_set_blocked() 44 return fcntl(fd, F_SETFL, flags); in fd_set_blocked()
|
H A D | fpm_signals.c | 196 if (0 > fcntl(sp[0], F_SETFD, FD_CLOEXEC) || 0 > fcntl(sp[1], F_SETFD, FD_CLOEXEC)) { in fpm_signals_init_main()
|
H A D | fpm_stdio.c | 298 if (0 > fcntl(fd, F_SETFD, fcntl(fd, F_GETFD) | FD_CLOEXEC)) { in fpm_stdio_open_error_log()
|
H A D | fpm_log.c | 60 if (0 > fcntl(fd, F_SETFD, fcntl(fd, F_GETFD) | FD_CLOEXEC)) { in fpm_log_open()
|
H A D | fastcgi.c | 105 if (fcntl(fd, F_SETLKW, &lock) != -1) { \ 121 if (fcntl(fd, F_SETLK, &lock) != -1) { \
|
/PHP-5.3/ext/standard/ |
H A D | flock_compat.c | 67 ret = fcntl(fd, operation & LOCK_NB ? F_SETLK : F_SETLKW, &flck); in php_flock()
|
H A D | proc_open.c | 1009 fcntl(descriptors[i].parentend, F_SETFD, FD_CLOEXEC); in PHP_FUNCTION()
|
/PHP-5.3/main/ |
H A D | network.c | 288 save = fcntl(sock, F_GETFL, 0); \ 289 fcntl(sock, F_SETFL, save | O_NONBLOCK) 291 fcntl(sock, F_SETFL, save) 1087 flags = fcntl(socketd, F_GETFL); 1098 if (fcntl(socketd, F_SETFL, flags) == -1) {
|
/PHP-5.3/Zend/ |
H A D | Zend.m4 | 313 #include <fcntl.h> 358 #include <fcntl.h>
|
/PHP-5.3/ext/sqlite/libsqlite/src/ |
H A D | os.c | 61 # define fcntl(A,B,C) 0 macro 1337 s = fcntl(id->fd, F_SETLK, &lock); 1448 s = fcntl(id->fd, F_SETLK, &lock); 1563 s = fcntl(id->fd, F_SETLK, &lock);
|
/PHP-5.3/ext/session/ |
H A D | mod_files.c | 199 if (fcntl(data->fd, F_SETFD, FD_CLOEXEC)) { in ps_files_open()
|
/PHP-5.3/sapi/litespeed/ |
H A D | lsapilib.c | 185 int val = fcntl( fd, F_GETFL, 0 ); in lsapi_set_nblock() 190 return fcntl( fd, F_SETFL, val | O_NONBLOCK ); in lsapi_set_nblock() 197 return fcntl( fd, F_SETFL, val &(~O_NONBLOCK) ); in lsapi_set_nblock() 1423 fcntl( fd, F_SETFD, FD_CLOEXEC ); in LSAPI_CreateListenSock2()
|
/PHP-5.3/sapi/fpm/ |
H A D | config.m4 | 16 AC_CHECK_HEADERS([errno.h fcntl.h stdio.h stdlib.h unistd.h sys/uio.h]) 244 #include <fcntl.h>
|
/PHP-5.3/ext/dba/ |
H A D | dba.c | 907 int flags = fcntl(info->fd, F_SETFL); in php_dba_open() 908 fcntl(info->fd, F_SETFL, flags & ~O_APPEND); in php_dba_open()
|
/PHP-5.3/sapi/cgi/ |
H A D | fastcgi.c | 99 if (fcntl(fd, F_SETLKW, &lock) != -1) { \ 115 if (fcntl(fd, F_SETLK, &lock) != -1) { \
|
/PHP-5.3/main/streams/ |
H A D | plain_wrapper.c | 564 flags = fcntl(fd, F_GETFL, 0); in php_stdiop_set_option() 571 if (-1 == fcntl(fd, F_SETFL, flags)) in php_stdiop_set_option()
|
/PHP-5.3/sapi/thttpd/ |
H A D | thttpd_patch | 72 -for ac_hdr in fcntl.h grp.h memory.h paths.h poll.h sys/poll.h sys/event.h osreldate.h 73 +for ac_hdr in fcntl.h grp.h memory.h paths.h poll.h sys/poll.h sys/event.h osreldate.h netinet/tcp… 84 -AC_CHECK_HEADERS(fcntl.h grp.h memory.h paths.h poll.h sys/poll.h sys/event.h osreldate.h) 85 +AC_CHECK_HEADERS(fcntl.h grp.h memory.h paths.h poll.h sys/poll.h sys/event.h osreldate.h netinet/… 214 (void) fcntl( listen_fd, F_SETFD, 1 ); 707 + fcntl(hc->conn_fd, F_SETFL, O_NONBLOCK);
|
/PHP-5.3/ |
H A D | acinclude.m4 | 1212 #include <fcntl.h> 1242 #include <fcntl.h> 1418 #include <fcntl.h>
|
H A D | configure.in | 413 fcntl.h \
|
/PHP-5.3/ext/fileinfo/ |
H A D | libmagic.patch | 42 #include <fcntl.h> 2251 - if ((flags = fcntl(fd, F_GETFL)) != -1) { 2253 - (void)fcntl(fd, F_SETFL, flags);
|
/PHP-5.3/ext/sockets/ |
H A D | sockets.c | 429 m = fcntl(sock->bsd_socket, F_GETFL);
|
/PHP-5.3/ext/pcre/pcrelib/ |
H A D | ChangeLog | 2499 9. On the advice of a Windows user, included <io.h> and <fcntl.h> in Windows
|
/PHP-5.3/ext/sqlite3/libsqlite/ |
H A D | sqlite3.c | 24813 { "fcntl", (sqlite3_syscall_ptr)fcntl, 0 },
|