Searched refs:O_NONBLOCK (Results 1 – 8 of 8) sorted by relevance
/PHP-8.0/sapi/fpm/fpm/ |
H A D | fpm_sockets.h | 41 flags &= ~O_NONBLOCK; in fd_set_blocked() 43 flags |= O_NONBLOCK; in fd_set_blocked()
|
/PHP-8.0/main/streams/ |
H A D | plain_wrapper.c | 101 #if defined(O_NONBLOCK) in php_stream_parse_fopen_modes() 103 flags |= O_NONBLOCK; in php_stream_parse_fopen_modes() 645 #ifdef O_NONBLOCK in php_stdiop_set_option() 657 #ifdef O_NONBLOCK in php_stdiop_set_option() 659 oldval = (flags & O_NONBLOCK) ? 0 : 1; in php_stdiop_set_option() 661 flags &= ~O_NONBLOCK; in php_stdiop_set_option() 663 flags |= O_NONBLOCK; in php_stdiop_set_option() 945 #ifdef O_NONBLOCK in php_stdiop_set_option() 949 add_assoc_bool((zval*)ptrparam, "blocked", (flags & O_NONBLOCK)? 0 : 1); in php_stdiop_set_option()
|
/PHP-8.0/main/ |
H A D | network.c | 277 #ifndef O_NONBLOCK 278 #define O_NONBLOCK O_NDELAY macro 291 fcntl(sock, F_SETFL, save | O_NONBLOCK) 1138 #ifdef O_NONBLOCK 1139 myflag = O_NONBLOCK; /* POSIX version */
|
/PHP-8.0/ext/fileinfo/libmagic/ |
H A D | file.h | 573 #ifndef O_NONBLOCK 574 #define O_NONBLOCK 0 macro
|
/PHP-8.0/sapi/litespeed/ |
H A D | lsapilib.c | 398 if (!( val & O_NONBLOCK )) in lsapi_set_nblock() 400 return fcntl( fd, F_SETFL, val | O_NONBLOCK ); in lsapi_set_nblock() 405 if ( val & O_NONBLOCK ) in lsapi_set_nblock() 407 return fcntl( fd, F_SETFL, val &(~O_NONBLOCK) ); in lsapi_set_nblock()
|
/PHP-8.0/ext/sockets/ |
H A D | sockets.c | 300 nonblock = (m & O_NONBLOCK); 2146 retsock->blocking = !(t & O_NONBLOCK);
|
/PHP-8.0/sapi/phpdbg/ |
H A D | phpdbg.c | 1180 fcntl(PHPDBG_G(io)[PHPDBG_STDIN].fd, F_SETFL, flags | O_NONBLOCK); in phpdbg_sigio_handler()
|
/PHP-8.0/ext/fileinfo/ |
H A D | libmagic.patch | 3023 - int flags = O_RDONLY|O_BINARY|O_NONBLOCK;
|
Completed in 63 milliseconds