Searched refs:instream (Results 1 – 4 of 4) sorted by relevance
/PHP-5.3/ext/recode/ |
H A D | recode.c | 192 php_stream *instream, *outstream; in PHP_FUNCTION() local 199 php_stream_from_zval(instream, &input); in PHP_FUNCTION() 202 if (FAILURE == php_stream_cast(instream, PHP_STREAM_AS_STDIO, (void**)&in_fp, REPORT_ERRORS)) { in PHP_FUNCTION()
|
/PHP-5.3/ext/ftp/ |
H A D | ftp.h | 177 int ftp_put(ftpbuf_t *ftp, const char *path, php_stream *instream, ftptype_t type, int startpos TS… 202 int ftp_nb_put(ftpbuf_t *ftp, const char *path, php_stream *instream, ftptype_t type, int startpos…
|
H A D | php_ftp.c | 1125 php_stream *instream; in PHP_FUNCTION() local 1134 …if (!(instream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "rt" : "rb", ENFORCE_SAFE_… in PHP_FUNCTION() 1152 php_stream_seek(instream, startpos, SEEK_SET); in PHP_FUNCTION() 1156 if (!ftp_put(ftp, remote, instream, xtype, startpos TSRMLS_CC)) { in PHP_FUNCTION() 1157 php_stream_close(instream); in PHP_FUNCTION() 1161 php_stream_close(instream); in PHP_FUNCTION() 1178 php_stream *instream; in PHP_FUNCTION() local 1187 …if (!(instream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "rt" : "rb", ENFORCE_SAFE_… in PHP_FUNCTION() 1205 php_stream_seek(instream, startpos, SEEK_SET); in PHP_FUNCTION() 1213 ret = ftp_nb_put(ftp, remote, instream, xtype, startpos TSRMLS_CC); in PHP_FUNCTION() [all …]
|
H A D | ftp.c | 882 ftp_put(ftpbuf_t *ftp, const char *path, php_stream *instream, ftptype_t type, int startpos TSRMLS_… in ftp_put() argument 927 while (!php_stream_eof(instream) && (ch = php_stream_getc(instream))!=EOF) { in ftp_put() 1823 ftp_nb_put(ftpbuf_t *ftp, const char *path, php_stream *instream, ftptype_t type, int startpos TSRM… in ftp_nb_put() argument 1861 ftp->stream = instream; in ftp_nb_put()
|
Completed in 14 milliseconds