Searched refs:newstream (Results 1 – 4 of 4) sorted by relevance
/php-src/main/streams/ |
H A D | cast.c | 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() 279 php_stream_close(newstream); in _php_stream_cast() 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() 390 *newstream = php_stream_temp_new(); in _php_stream_make_seekable() 393 if (*newstream == NULL) { in _php_stream_make_seekable() 403 php_stream_close(*newstream); in _php_stream_make_seekable() [all …]
|
H A D | streams.c | 2278 php_stream *newstream; local 2280 switch(php_stream_make_seekable_rel(stream, &newstream, 2289 if (newstream->orig_path) { 2290 pefree(newstream->orig_path, persistent); 2292 newstream->orig_path = pestrdup(path, persistent); 2296 return newstream;
|
/php-src/main/ |
H A D | php_streams.h | 80 … php_stream_make_seekable_rel(origstream, newstream, flags) _php_stream_make_seekable((origstream)… argument 611 PHPAPI int _php_stream_make_seekable(php_stream *origstream, php_stream **newstream, int flags STRE… 612 …fine php_stream_make_seekable(origstream, newstream, flags) _php_stream_make_seekable((origstream)… argument
|
/php-src/docs-old/ |
H A D | streams.md | 135 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 22 milliseconds