Lines Matching refs:newstream
272 php_stream *newstream; in _php_stream_cast() local
274 newstream = php_stream_fopen_tmpfile(); in _php_stream_cast()
275 if (newstream) { in _php_stream_cast()
276 int retcopy = php_stream_copy_to_stream_ex(stream, newstream, PHP_STREAM_COPY_ALL, NULL); in _php_stream_cast()
279 php_stream_close(newstream); in _php_stream_cast()
281 int retcast = php_stream_cast(newstream, castas | flags, (void **)ret, show_err); in _php_stream_cast()
373 PHPAPI int _php_stream_make_seekable(php_stream *origstream, php_stream **newstream, int flags STRE… in _php_stream_make_seekable() argument
375 if (newstream == NULL) { in _php_stream_make_seekable()
378 *newstream = NULL; in _php_stream_make_seekable()
381 *newstream = origstream; in _php_stream_make_seekable()
388 *newstream = php_stream_fopen_tmpfile(); in _php_stream_make_seekable()
390 *newstream = php_stream_temp_new(); in _php_stream_make_seekable()
393 if (*newstream == NULL) { in _php_stream_make_seekable()
398 (*newstream)->open_filename = origstream->open_filename; in _php_stream_make_seekable()
399 (*newstream)->open_lineno = origstream->open_lineno; in _php_stream_make_seekable()
402 if (php_stream_copy_to_stream_ex(origstream, *newstream, PHP_STREAM_COPY_ALL, NULL) != SUCCESS) { in _php_stream_make_seekable()
403 php_stream_close(*newstream); in _php_stream_make_seekable()
404 *newstream = NULL; in _php_stream_make_seekable()
409 php_stream_seek(*newstream, 0, SEEK_SET); in _php_stream_make_seekable()