Searched refs:PHP_SAFE_FD_ISSET (Results 1 – 6 of 6) sorted by relevance
/php-src/main/ |
H A D | php_network.h | 236 # define PHP_SAFE_FD_ISSET(fd, set) FD_ISSET(fd, set) macro 241 # define PHP_SAFE_FD_ISSET(fd, set) ((fd < FD_SETSIZE) && FD_ISSET(fd, set)) macro
|
H A D | network.c | 1229 if (PHP_SAFE_FD_ISSET(ufds[i].fd, &rset)) { 1233 if (PHP_SAFE_FD_ISSET(ufds[i].fd, &wset)) { 1236 if (PHP_SAFE_FD_ISSET(ufds[i].fd, &eset)) {
|
/php-src/sapi/cli/ |
H A D | php_cli_server.c | 867 if (PHP_SAFE_FD_ISSET(fd, &poller->rfds) || PHP_SAFE_FD_ISSET(fd, &poller->wfds)) { in php_cli_server_poller_remove() 931 if (PHP_SAFE_FD_ISSET(fd, &poller->active.rfds)) { in php_cli_server_poller_iter_on_active() 936 if (PHP_SAFE_FD_ISSET(fd, &poller->active.wfds)) { in php_cli_server_poller_iter_on_active()
|
/php-src/ext/standard/ |
H A D | streamsfuncs.c | 691 if (PHP_SAFE_FD_ISSET(this_fd, fds)) { in stream_array_from_fd_set()
|
/php-src/ext/mysqlnd/ |
H A D | mysqlnd_connection.c | 2155 if (PHP_SAFE_FD_ISSET(this_fd, fds)) {
|
/php-src/ext/sockets/ |
H A D | sockets.c | 564 if (PHP_SAFE_FD_ISSET(php_sock->bsd_socket, fds)) {
|
Completed in 34 milliseconds