Home
last modified time | relevance | path

Searched refs:newstream (Results 1 – 4 of 4) sorted by relevance

/PHP-7.4/main/streams/
H A Dcast.c269 php_stream *newstream; in _php_stream_cast() local
271 newstream = php_stream_fopen_tmpfile(); in _php_stream_cast()
272 if (newstream) { in _php_stream_cast()
276 php_stream_close(newstream); in _php_stream_cast()
372 if (newstream == NULL) { in _php_stream_make_seekable()
375 *newstream = NULL; in _php_stream_make_seekable()
378 *newstream = origstream; in _php_stream_make_seekable()
387 *newstream = php_stream_temp_new(); in _php_stream_make_seekable()
390 if (*newstream == NULL) { in _php_stream_make_seekable()
400 php_stream_close(*newstream); in _php_stream_make_seekable()
[all …]
H A Dstreams.c2162 php_stream *newstream; local
2164 switch(php_stream_make_seekable_rel(stream, &newstream,
2173 if (newstream->orig_path) {
2174 pefree(newstream->orig_path, persistent);
2176 newstream->orig_path = pestrdup(path, persistent);
2180 return newstream;
/PHP-7.4/main/
H A Dphp_streams.h82 … php_stream_make_seekable_rel(origstream, newstream, flags) _php_stream_make_seekable((origstream)… argument
586 PHPAPI int _php_stream_make_seekable(php_stream *origstream, php_stream **newstream, int flags STRE…
587 …fine php_stream_make_seekable(origstream, newstream, flags) _php_stream_make_seekable((origstream)… argument
/PHP-7.4/docs/
H A Dstreams.md135 PHPAPI int php_stream_make_seekable(php_stream *origstream, php_stream **newstream);
142 #define PHP_STREAM_RELEASED 1 /* newstream should be used; origstream is no longer valid */
147 `make_seekable` will always set newstream to be the stream that is valid if the

Completed in 24 milliseconds