Searched refs:newstream (Results 1 - 3 of 3) sorted by relevance
| /PHP_5_5/main/ |
| H A D | php_streams.h | 82 #define php_stream_make_seekable_rel(origstream, newstream, flags) _php_stream_make_seekable((origstream), (newstream), (flags) STREAMS_REL_CC TSRMLS_CC) 568 #define PHP_STREAM_RELEASED 1 /* newstream should be used; origstream is no longer valid */ 575 PHPAPI int _php_stream_make_seekable(php_stream *origstream, php_stream **newstream, int flags STREAMS_DC TSRMLS_DC); 576 #define php_stream_make_seekable(origstream, newstream, flags) _php_stream_make_seekable((origstream), (newstream), (flags) STREAMS_CC TSRMLS_CC)
|
| /PHP_5_5/main/streams/ |
| H A D | cast.c | 270 php_stream *newstream; local 272 newstream = php_stream_fopen_tmpfile(); 273 if (newstream) { 274 int retcopy = php_stream_copy_to_stream_ex(stream, newstream, PHP_STREAM_COPY_ALL, NULL); 277 php_stream_close(newstream); 279 int retcast = php_stream_cast(newstream, castas | flags, (void **)ret, show_err); 369 PHPAPI int _php_stream_make_seekable(php_stream *origstream, php_stream **newstream, int flags STREAMS_DC TSRMLS_DC) argument 371 if (newstream == NULL) { 374 *newstream = NULL; 377 *newstream [all...] |
| H A D | streams.c | 2087 php_stream *newstream; local 2089 switch(php_stream_make_seekable_rel(stream, &newstream, 2098 if (newstream->orig_path) { 2099 pefree(newstream->orig_path, persistent); 2101 newstream->orig_path = pestrdup(path, persistent); 2105 return newstream;
|
Completed in 16 milliseconds