instream          920 ext/ftp/ftp.c  ftp_put(ftpbuf_t *ftp, const char *path, php_stream *instream, ftptype_t type, zend_long startpos)
instream          961 ext/ftp/ftp.c  	while (!php_stream_eof(instream) && (ch = php_stream_getc(instream))!=EOF) {
instream         2005 ext/ftp/ftp.c  ftp_nb_put(ftpbuf_t *ftp, const char *path, php_stream *instream, ftptype_t type, zend_long startpos)
instream         2039 ext/ftp/ftp.c  	ftp->stream = instream;
instream          179 ext/ftp/ftp.h  int		ftp_put(ftpbuf_t *ftp, const char *path, php_stream *instream, ftptype_t type, zend_long startpos);
instream          204 ext/ftp/ftp.h  int		ftp_nb_put(ftpbuf_t *ftp, const char *path, php_stream *instream, ftptype_t type, zend_long startpos);
instream         1192 ext/ftp/php_ftp.c 	php_stream 	*instream;
instream         1203 ext/ftp/php_ftp.c 	if (!(instream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "rt" : "rb", REPORT_ERRORS, NULL))) {
instream         1221 ext/ftp/php_ftp.c 			php_stream_seek(instream, startpos, SEEK_SET);
instream         1225 ext/ftp/php_ftp.c 	if (!ftp_put(ftp, remote, instream, xtype, startpos)) {
instream         1226 ext/ftp/php_ftp.c 		php_stream_close(instream);
instream         1230 ext/ftp/php_ftp.c 	php_stream_close(instream);
instream         1247 ext/ftp/php_ftp.c 	php_stream 	*instream;
instream         1258 ext/ftp/php_ftp.c 	if (!(instream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "rt" : "rb", REPORT_ERRORS, NULL))) {
instream         1276 ext/ftp/php_ftp.c 			php_stream_seek(instream, startpos, SEEK_SET);
instream         1284 ext/ftp/php_ftp.c 	ret = ftp_nb_put(ftp, remote, instream, xtype, startpos);
instream         1287 ext/ftp/php_ftp.c 		php_stream_close(instream);
instream          192 ext/recode/recode.c 	php_stream *instream, *outstream;
instream          199 ext/recode/recode.c 	php_stream_from_zval(instream, input);
instream          202 ext/recode/recode.c 	if (FAILURE == php_stream_cast(instream, PHP_STREAM_AS_STDIO, (void**)&in_fp, REPORT_ERRORS))	{