nr_bytes         1277 ext/ftp/ftp.c  	int		n, nr_bytes;
nr_bytes         1291 ext/ftp/ftp.c  		nr_bytes = SSL_read(ftp->ssl_handle, buf, len);
nr_bytes         1293 ext/ftp/ftp.c  		nr_bytes = SSL_read(ftp->data->ssl_handle, buf, len);
nr_bytes         1296 ext/ftp/ftp.c  		nr_bytes = recv(s, buf, len, 0);
nr_bytes         1300 ext/ftp/ftp.c  	return (nr_bytes);
nr_bytes          150 ext/openssl/xp_ssl.c static int handle_ssl_error(php_stream *stream, int nr_bytes, zend_bool is_init TSRMLS_DC) /* {{{ */
nr_bytes          153 ext/openssl/xp_ssl.c 	int err = SSL_get_error(sslsock->ssl_handle, nr_bytes);
nr_bytes          173 ext/openssl/xp_ssl.c 				if (nr_bytes == 0) {
nr_bytes         1828 ext/openssl/xp_ssl.c 	int nr_bytes = 0;
nr_bytes         1878 ext/openssl/xp_ssl.c 				nr_bytes = SSL_read(sslsock->ssl_handle, buf, count);
nr_bytes         1883 ext/openssl/xp_ssl.c 					nr_bytes = 0;
nr_bytes         1888 ext/openssl/xp_ssl.c 				nr_bytes = SSL_write(sslsock->ssl_handle, buf, count);
nr_bytes         1897 ext/openssl/xp_ssl.c 			if (nr_bytes <= 0) {
nr_bytes         1900 ext/openssl/xp_ssl.c 				int err = SSL_get_error(sslsock->ssl_handle, nr_bytes );
nr_bytes         1901 ext/openssl/xp_ssl.c 				retry = handle_ssl_error(stream, nr_bytes, 0 TSRMLS_CC);
nr_bytes         1935 ext/openssl/xp_ssl.c 				int err = SSL_get_error(sslsock->ssl_handle, nr_bytes);
nr_bytes         1956 ext/openssl/xp_ssl.c 		if (nr_bytes > 0) {
nr_bytes         1957 ext/openssl/xp_ssl.c 			php_stream_notify_progress_increment(stream->context, nr_bytes, 0);
nr_bytes         1969 ext/openssl/xp_ssl.c 			nr_bytes = php_stream_socket_ops.read(stream, buf, count TSRMLS_CC);
nr_bytes         1971 ext/openssl/xp_ssl.c 			nr_bytes = php_stream_socket_ops.write(stream, buf, count TSRMLS_CC);
nr_bytes         1976 ext/openssl/xp_ssl.c 	if (nr_bytes < 0) {
nr_bytes         1977 ext/openssl/xp_ssl.c 		nr_bytes = 0;
nr_bytes         1980 ext/openssl/xp_ssl.c 	return nr_bytes;
nr_bytes          147 main/streams/xp_socket.c 	int nr_bytes = 0;
nr_bytes          159 main/streams/xp_socket.c 	nr_bytes = recv(sock->socket, buf, count, (sock->is_blocked && sock->timeout.tv_sec != -1) ? MSG_DONTWAIT : 0);
nr_bytes          161 main/streams/xp_socket.c 	stream->eof = (nr_bytes == 0 || (nr_bytes == -1 && php_socket_errno() != EWOULDBLOCK));
nr_bytes          163 main/streams/xp_socket.c 	if (nr_bytes > 0) {
nr_bytes          164 main/streams/xp_socket.c 		php_stream_notify_progress_increment(stream->context, nr_bytes, 0);
nr_bytes          167 main/streams/xp_socket.c 	if (nr_bytes < 0) {
nr_bytes          168 main/streams/xp_socket.c 		nr_bytes = 0;
nr_bytes          171 main/streams/xp_socket.c 	return nr_bytes;