Searched refs:O_NONBLOCK (Results 1 – 8 of 8) sorted by relevance
/PHP-7.0/sapi/fpm/fpm/ |
H A D | fpm_sockets.h | 40 flags &= ~O_NONBLOCK; in fd_set_blocked() 42 flags |= O_NONBLOCK; in fd_set_blocked()
|
/PHP-7.0/main/streams/ |
H A D | plain_wrapper.c | 103 #if defined(O_NONBLOCK) in php_stream_parse_fopen_modes() 105 flags |= O_NONBLOCK; in php_stream_parse_fopen_modes() 612 #ifdef O_NONBLOCK in php_stdiop_set_option() 624 #ifdef O_NONBLOCK in php_stdiop_set_option() 626 oldval = (flags & O_NONBLOCK) ? 0 : 1; in php_stdiop_set_option() 628 flags &= ~O_NONBLOCK; in php_stdiop_set_option() 630 flags |= O_NONBLOCK; in php_stdiop_set_option() 863 #ifdef O_NONBLOCK in php_stdiop_set_option() 867 add_assoc_bool((zval*)ptrparam, "blocked", (flags & O_NONBLOCK)? 0 : 1); in php_stdiop_set_option()
|
/PHP-7.0/main/ |
H A D | network.c | 282 #ifndef O_NONBLOCK 283 #define O_NONBLOCK O_NDELAY macro 298 fcntl(sock, F_SETFL, save | O_NONBLOCK) 1154 #ifdef O_NONBLOCK 1155 myflag = O_NONBLOCK; /* POSIX version */
|
/PHP-7.0/ext/fileinfo/libmagic/ |
H A D | magic.c | 397 #ifdef O_NONBLOCK in file_or_stream()
|
/PHP-7.0/sapi/litespeed/ |
H A D | lsapilib.c | 259 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-7.0/ext/sockets/ |
H A D | sockets.c | 511 nonblock = (m & O_NONBLOCK); 2305 retsock->blocking = !(t & O_NONBLOCK);
|
/PHP-7.0/ext/fileinfo/ |
H A D | libmagic.patch | 2652 -#ifdef O_NONBLOCK 2653 - flags |= O_NONBLOCK; 2688 #ifdef O_NONBLOCK 2690 - flags &= ~O_NONBLOCK;
|
/PHP-7.0/sapi/phpdbg/ |
H A D | phpdbg.c | 1220 fcntl(PHPDBG_G(io)[PHPDBG_STDIN].fd, F_SETFL, flags | O_NONBLOCK); in phpdbg_sigio_handler()
|
Completed in 46 milliseconds