nr_bytes         1358 ext/ftp/ftp.c  	int		n, nr_bytes;
nr_bytes         1391 ext/ftp/ftp.c  			nr_bytes = SSL_read(handle, buf, len);
nr_bytes         1392 ext/ftp/ftp.c  			err = SSL_get_error(handle, nr_bytes);
nr_bytes         1426 ext/ftp/ftp.c  		nr_bytes = recv(s, buf, len, 0);
nr_bytes         1430 ext/ftp/ftp.c  	return (nr_bytes);
nr_bytes          187 ext/openssl/xp_ssl.c static int handle_ssl_error(php_stream *stream, int nr_bytes, zend_bool is_init) /* {{{ */
nr_bytes          190 ext/openssl/xp_ssl.c 	int err = SSL_get_error(sslsock->ssl_handle, nr_bytes);
nr_bytes          210 ext/openssl/xp_ssl.c 				if (nr_bytes == 0) {
nr_bytes         1938 ext/openssl/xp_ssl.c 		int nr_bytes = 0;
nr_bytes         1985 ext/openssl/xp_ssl.c 				nr_bytes = SSL_read(sslsock->ssl_handle, buf, (int)count);
nr_bytes         1990 ext/openssl/xp_ssl.c 					nr_bytes = 0;
nr_bytes         1995 ext/openssl/xp_ssl.c 				nr_bytes = SSL_write(sslsock->ssl_handle, buf, (int)count);
nr_bytes         2004 ext/openssl/xp_ssl.c 			if (nr_bytes <= 0) {
nr_bytes         2007 ext/openssl/xp_ssl.c 				int err = SSL_get_error(sslsock->ssl_handle, nr_bytes );
nr_bytes         2008 ext/openssl/xp_ssl.c 				retry = handle_ssl_error(stream, nr_bytes, 0);
nr_bytes         2042 ext/openssl/xp_ssl.c 				int err = SSL_get_error(sslsock->ssl_handle, nr_bytes);
nr_bytes         2065 ext/openssl/xp_ssl.c 		if (nr_bytes > 0) {
nr_bytes         2066 ext/openssl/xp_ssl.c 			php_stream_notify_progress_increment(PHP_STREAM_CONTEXT(stream), nr_bytes, 0);
nr_bytes         2074 ext/openssl/xp_ssl.c 		return 0 > nr_bytes ? 0 : nr_bytes;
nr_bytes         2076 ext/openssl/xp_ssl.c 		size_t nr_bytes = 0;
nr_bytes         2082 ext/openssl/xp_ssl.c 			nr_bytes = php_stream_socket_ops.read(stream, buf, count);
nr_bytes         2084 ext/openssl/xp_ssl.c 			nr_bytes = php_stream_socket_ops.write(stream, buf, count);
nr_bytes         2087 ext/openssl/xp_ssl.c 		return nr_bytes;
nr_bytes          154 main/streams/xp_socket.c 	ssize_t nr_bytes = 0;
nr_bytes          167 main/streams/xp_socket.c 	nr_bytes = recv(sock->socket, buf, XP_SOCK_BUF_SIZE(count), (sock->is_blocked && sock->timeout.tv_sec != -1) ? MSG_DONTWAIT : 0);
nr_bytes          170 main/streams/xp_socket.c 	stream->eof = (nr_bytes == 0 || (nr_bytes == -1 && err != EWOULDBLOCK && err != EAGAIN));
nr_bytes          172 main/streams/xp_socket.c 	if (nr_bytes > 0) {
nr_bytes          173 main/streams/xp_socket.c 		php_stream_notify_progress_increment(PHP_STREAM_CONTEXT(stream), nr_bytes, 0);
nr_bytes          176 main/streams/xp_socket.c 	if (nr_bytes < 0) {
nr_bytes          177 main/streams/xp_socket.c 		nr_bytes = 0;
nr_bytes          180 main/streams/xp_socket.c 	return nr_bytes;