fileno            232 TSRM/tsrm_nw.c 	fd = fileno(stream);
fileno             67 Zend/zend_stream.c 	if (handle && zend_fstat(fileno((FILE*)handle), &buf) == 0) {
fileno            116 Zend/zend_stream.c 	if (file_handle->handle.fp && zend_fstat(fileno(file_handle->handle.fp), &buf) == 0) {
fileno            201 Zend/zend_stream.c 			file_handle->handle.stream.isatty     = isatty(fileno((FILE *)file_handle->handle.stream.handle)) ? 1 : 0;
fileno            237 Zend/zend_stream.c 			*buf = mmap(0, size + ZEND_MMAP_AHEAD, PROT_READ, MAP_PRIVATE, fileno(file_handle->handle.fp), 0);
fileno            789 ext/opcache/ZendAccelerator.c 			if (zend_fstat(fileno(file_handle->handle.fp), &statbuf) == -1) {
fileno           17804 ext/sqlite3/libsqlite/sqlite3.c       backtrace_symbols_fd(pBt, pHdr->nBacktrace, fileno(out));
fileno            219 ext/standard/iptc.c 		zend_fstat(fileno(fp), &sb);
fileno            416 ext/zip/lib/zip_source_filep.c 		    err = fstat(fileno(ctx->f), &fst);
fileno            145 main/streams/plain_wrapper.c #define PHP_STDIOP_GET_FD(anfd, data)	anfd = (data)->file ? fileno((data)->file) : (data)->fd
fileno            192 main/streams/plain_wrapper.c 	self->fd = fileno(file);
fileno            320 main/streams/plain_wrapper.c 	self->fd = fileno(file);
fileno            914 sapi/phpdbg/phpdbg.c 		if (((fstat(fileno(stderr), &stat[2]) < 0) & (fstat(fileno(stdout), &stat[0]) < 0)) | (fstat(data->fd, &stat[1]) < 0)) {
fileno           1143 sapi/phpdbg/phpdbg.c 		phpdbg_rlog(fileno(stderr), "Initializing connection on %s:%u failed", address, port);
fileno           1148 sapi/phpdbg/phpdbg.c 	phpdbg_rlog(fileno(stderr), "accepting connections on %s:%u", address, port);
fileno           1158 sapi/phpdbg/phpdbg.c 		phpdbg_rlog(fileno(stderr), "connection established from %s", buffer);
fileno           1162 sapi/phpdbg/phpdbg.c 	dup2(*socket, fileno(stdout));
fileno           1163 sapi/phpdbg/phpdbg.c 	dup2(*socket, fileno(stdin));
fileno           1511 sapi/phpdbg/phpdbg.c 				PHPDBG_G(io)[PHPDBG_STDOUT].fd = fileno(stdout);
fileno           1730 sapi/phpdbg/phpdbg.c 		PHPDBG_G(io)[PHPDBG_STDIN].fd = fileno(stdin);
fileno           1732 sapi/phpdbg/phpdbg.c 		PHPDBG_G(io)[PHPDBG_STDOUT].fd = fileno(stdout);
fileno           1746 sapi/phpdbg/phpdbg.c 			PHPDBG_G(io)[PHPDBG_STDIN].fd = fileno(stdin);
fileno           1748 sapi/phpdbg/phpdbg.c 			PHPDBG_G(io)[PHPDBG_STDOUT].fd = fileno(stdout);
fileno           1752 sapi/phpdbg/phpdbg.c 		PHPDBG_G(io)[PHPDBG_STDERR].fd = fileno(stderr);
fileno            193 sapi/phpdbg/phpdbg_opcode.c 			phpdbg_log_ex(fileno(PHPDBG_G(oplog)), "L%-5u %16p %s %s\n",
fileno            347 sapi/phpdbg/phpdbg_utils.c 	columns = ioctl(fileno(stdout), TIOCGWINSZ, &w) == 0 ? w.ws_col : 80;
fileno            365 sapi/phpdbg/phpdbg_utils.c 	lines = ioctl(fileno(stdout), TIOCGWINSZ, &w) == 0 ? w.ws_row : 40;