Lines Matching refs:instream
1128 php_stream *instream; in PHP_FUNCTION() local
1137 …if (!(instream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "rt" : "rb", REPORT_ERRORS… in PHP_FUNCTION()
1155 php_stream_seek(instream, startpos, SEEK_SET); in PHP_FUNCTION()
1159 if (!ftp_put(ftp, remote, instream, xtype, startpos TSRMLS_CC)) { in PHP_FUNCTION()
1160 php_stream_close(instream); in PHP_FUNCTION()
1164 php_stream_close(instream); in PHP_FUNCTION()
1181 php_stream *instream; in PHP_FUNCTION() local
1190 …if (!(instream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "rt" : "rb", REPORT_ERRORS… in PHP_FUNCTION()
1208 php_stream_seek(instream, startpos, SEEK_SET); in PHP_FUNCTION()
1216 ret = ftp_nb_put(ftp, remote, instream, xtype, startpos TSRMLS_CC); in PHP_FUNCTION()
1219 php_stream_close(instream); in PHP_FUNCTION()