Home
last modified time | relevance | path

Searched refs:O_NONBLOCK (Results 1 – 9 of 9) sorted by relevance

/PHP-5.4/sapi/fpm/fpm/
H A Dfpm_sockets.h40 flags &= ~O_NONBLOCK; in fd_set_blocked()
42 flags |= O_NONBLOCK; in fd_set_blocked()
/PHP-5.4/main/
H A Dnetwork.c279 #ifndef O_NONBLOCK
280 #define O_NONBLOCK O_NDELAY macro
295 fcntl(sock, F_SETFL, save | O_NONBLOCK)
1091 #ifdef O_NONBLOCK
1092 myflag = O_NONBLOCK; /* POSIX version */
/PHP-5.4/main/streams/
H A Dplain_wrapper.c90 #if defined(O_NONBLOCK) in php_stream_parse_fopen_modes()
92 flags |= O_NONBLOCK; in php_stream_parse_fopen_modes()
558 #ifdef O_NONBLOCK in php_stdiop_set_option()
570 #ifdef O_NONBLOCK in php_stdiop_set_option()
572 oldval = (flags & O_NONBLOCK) ? 0 : 1; in php_stdiop_set_option()
574 flags &= ~O_NONBLOCK; in php_stdiop_set_option()
576 flags |= O_NONBLOCK; in php_stdiop_set_option()
/PHP-5.4/ext/fileinfo/libmagic/
H A Dmagic.c400 #ifdef O_NONBLOCK in file_or_stream()
/PHP-5.4/sapi/litespeed/
H A Dlsapilib.c259 if (!( val & O_NONBLOCK )) in lsapi_set_nblock()
261 return fcntl( fd, F_SETFL, val | O_NONBLOCK ); in lsapi_set_nblock()
266 if ( val & O_NONBLOCK ) in lsapi_set_nblock()
268 return fcntl( fd, F_SETFL, val &(~O_NONBLOCK) ); in lsapi_set_nblock()
/PHP-5.4/ext/sockets/
H A Dsockets.c511 nonblock = (m & O_NONBLOCK);
2596 retsock->blocking = !(t & O_NONBLOCK);
/PHP-5.4/ext/fileinfo/
H A Dlibmagic.patch2452 -#ifdef O_NONBLOCK
2453 - flags |= O_NONBLOCK;
2478 #ifdef O_NONBLOCK
2480 - flags &= ~O_NONBLOCK;
/PHP-5.4/sapi/thttpd/
H A Dthttpd_patch707 + fcntl(hc->conn_fd, F_SETFL, O_NONBLOCK);
/PHP-5.4/
H A DNEWS657 . Fixed bug #61645 (fopen and O_NONBLOCK). (Mike)
4836 - Added 'n' flag to fopen to allow passing O_NONBLOCK to the underlying

Completed in 66 milliseconds