Lines Matching refs:stream

741 	php_stream	*stream;  in PHP_FUNCTION()  local
751 php_stream_from_zval(stream, &z_file); in PHP_FUNCTION()
762 php_stream_seek(stream, 0, SEEK_END); in PHP_FUNCTION()
763 resumepos = php_stream_tell(stream); in PHP_FUNCTION()
765 php_stream_seek(stream, resumepos, SEEK_SET); in PHP_FUNCTION()
769 if (!ftp_get(ftp, stream, file, xtype, resumepos TSRMLS_CC)) { in PHP_FUNCTION()
785 php_stream *stream; in PHP_FUNCTION() local
795 php_stream_from_zval(stream, &z_file); in PHP_FUNCTION()
806 php_stream_seek(stream, 0, SEEK_END); in PHP_FUNCTION()
807 resumepos = php_stream_tell(stream); in PHP_FUNCTION()
809 php_stream_seek(stream, resumepos, SEEK_SET); in PHP_FUNCTION()
817 if ((ret = ftp_nb_get(ftp, stream, file, xtype, resumepos TSRMLS_CC)) == PHP_FTP_FAILED) { in PHP_FUNCTION()
966 ftp->stream = NULL; in PHP_FUNCTION()
974 ftp->stream = NULL; in PHP_FUNCTION()
1007 php_stream_close(ftp->stream); in PHP_FUNCTION()
1008 ftp->stream = NULL; in PHP_FUNCTION()
1028 php_stream *stream; in PHP_FUNCTION() local
1036 php_stream_from_zval(stream, &z_file); in PHP_FUNCTION()
1053 php_stream_seek(stream, startpos, SEEK_SET); in PHP_FUNCTION()
1057 if (!ftp_put(ftp, remote, stream, xtype, startpos TSRMLS_CC)) { in PHP_FUNCTION()
1075 php_stream *stream; in PHP_FUNCTION() local
1083 php_stream_from_zval(stream, &z_file); in PHP_FUNCTION()
1100 php_stream_seek(stream, startpos, SEEK_SET); in PHP_FUNCTION()
1108 if (((ret = ftp_nb_put(ftp, remote, stream, xtype, startpos TSRMLS_CC)) == PHP_FTP_FAILED)) { in PHP_FUNCTION()
1220 ftp->stream = NULL; in PHP_FUNCTION()