Searched refs:this_fd (Results 1 - 2 of 2) sorted by relevance

/PHP_TRUNK/ext/mysqlnd/
H A Dmysqlnd.c1263 php_socket_t this_fd; local
1274 (void*)&this_fd, 1) && this_fd >= 0) {
1276 PHP_SAFE_FD_SET(this_fd, fds);
1278 if (this_fd > *max_fd) {
1279 *max_fd = this_fd;
1290 php_socket_t this_fd; local
1299 (void*)&this_fd, 1) && this_fd >= 0) {
1300 if (PHP_SAFE_FD_ISSET(this_fd, fd
[all...]
/PHP_TRUNK/ext/standard/
H A Dstreamsfuncs.c613 /* Temporary int fd is needed for the STREAM data type on windows, passing this_fd directly to php_stream_cast()
629 php_socket_t this_fd = (php_socket_t)tmp_fd; local
631 PHP_SAFE_FD_SET(this_fd, fds);
633 if (this_fd > *max_fd) {
634 *max_fd = this_fd;
663 /* Temporary int fd is needed for the STREAM data type on windows, passing this_fd directly to php_stream_cast()
687 php_socket_t this_fd = (php_socket_t)tmp_fd; local
689 if (PHP_SAFE_FD_ISSET(this_fd, fds)) {

Completed in 7 milliseconds