Lines Matching refs:TSRMLS_DC

118 	size_t (*write)(php_stream *stream, const char *buf, size_t count TSRMLS_DC);
119 size_t (*read)(php_stream *stream, char *buf, size_t count TSRMLS_DC);
120 int (*close)(php_stream *stream, int close_handle TSRMLS_DC);
121 int (*flush)(php_stream *stream TSRMLS_DC);
126 int (*seek)(php_stream *stream, off_t offset, int whence, off_t *newoffset TSRMLS_DC);
127 int (*cast)(php_stream *stream, int castas, void **ret TSRMLS_DC);
128 int (*stat)(php_stream *stream, php_stream_statbuf *ssb TSRMLS_DC);
129 int (*set_option)(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC);
135 int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC);
137 int (*stream_closer)(php_stream_wrapper *wrapper, php_stream *stream TSRMLS_DC);
139 …(*stream_stat)(php_stream_wrapper *wrapper, php_stream *stream, php_stream_statbuf *ssb TSRMLS_DC);
141 …er *wrapper, char *url, int flags, php_stream_statbuf *ssb, php_stream_context *context TSRMLS_DC);
144 int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC);
149 …nlink)(php_stream_wrapper *wrapper, char *url, int options, php_stream_context *context TSRMLS_DC);
152 …rapper *wrapper, char *url_from, char *url_to, int options, php_stream_context *context TSRMLS_DC);
155 …_stream_wrapper *wrapper, char *url, int mode, int options, php_stream_context *context TSRMLS_DC);
156 …rmdir)(php_stream_wrapper *wrapper, char *url, int options, php_stream_context *context TSRMLS_DC);
158 …ream_wrapper *wrapper, char *url, int options, void *value, php_stream_context *context TSRMLS_DC);
241 const char *persistent_id, const char *mode STREAMS_DC TSRMLS_DC);
264 PHPAPI int _php_stream_free_enclosed(php_stream *stream_enclosed, int close_options TSRMLS_DC);
266 PHPAPI int php_stream_from_persistent_id(const char *persistent_id, php_stream **stream TSRMLS_DC);
281 PHPAPI int _php_stream_free(php_stream *stream, int close_options TSRMLS_DC);
286 PHPAPI int _php_stream_seek(php_stream *stream, off_t offset, int whence TSRMLS_DC);
290 PHPAPI off_t _php_stream_tell(php_stream *stream TSRMLS_DC);
293 PHPAPI size_t _php_stream_read(php_stream *stream, char *buf, size_t count TSRMLS_DC);
296 PHPAPI size_t _php_stream_write(php_stream *stream, const char *buf, size_t count TSRMLS_DC);
300 PHPAPI void _php_stream_fill_read_buffer(php_stream *stream, size_t size TSRMLS_DC);
304 PHPAPI size_t _php_stream_printf(php_stream *stream TSRMLS_DC, const char *fmt, ...) PHP_ATTRIBUTE_…
306 PHPAPI size_t _php_stream_printf(php_stream *stream TSRMLS_DC, const char *fmt, ...) PHP_ATTRIBUTE_…
312 PHPAPI int _php_stream_eof(php_stream *stream TSRMLS_DC);
315 PHPAPI int _php_stream_getc(php_stream *stream TSRMLS_DC);
318 PHPAPI int _php_stream_putc(php_stream *stream, int c TSRMLS_DC);
321 PHPAPI int _php_stream_flush(php_stream *stream, int closing TSRMLS_DC);
324 …_php_stream_get_line(php_stream *stream, char *buf, size_t maxlen, size_t *returned_len TSRMLS_DC);
328 …(php_stream *stream, size_t maxlen, size_t *returned_len, char *delim, size_t delim_len TSRMLS_DC);
331 PHPAPI int _php_stream_puts(php_stream *stream, char *buf TSRMLS_DC);
334 PHPAPI int _php_stream_stat(php_stream *stream, php_stream_statbuf *ssb TSRMLS_DC);
337 …m_stat_path(char *path, int flags, php_stream_statbuf *ssb, php_stream_context *context TSRMLS_DC);
341 …PI int _php_stream_mkdir(char *path, int mode, int options, php_stream_context *context TSRMLS_DC);
344 PHPAPI int _php_stream_rmdir(char *path, int options, php_stream_context *context TSRMLS_DC);
347 …am *_php_stream_opendir(char *path, int options, php_stream_context *context STREAMS_DC TSRMLS_DC);
349 …PI php_stream_dirent *_php_stream_readdir(php_stream *dirstream, php_stream_dirent *ent TSRMLS_DC);
358 int (*compare) (const char **a, const char **b) TSRMLS_DC);
361 …PI int _php_stream_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC);
418 PHPAPI int _php_stream_truncate_set_size(php_stream *stream, size_t newsize TSRMLS_DC);
439 … _php_stream_copy_to_stream(php_stream *src, php_stream *dest, size_t maxlen STREAMS_DC TSRMLS_DC);
441 …y_to_stream_ex(php_stream *src, php_stream *dest, size_t maxlen, size_t *len STREAMS_DC TSRMLS_DC);
448 int persistent STREAMS_DC TSRMLS_DC);
452 PHPAPI size_t _php_stream_passthru(php_stream * src STREAMS_DC TSRMLS_DC);
478 PHPAPI int _php_stream_cast(php_stream *stream, int castas, void **ret, int show_err TSRMLS_DC);
541 int php_init_stream_wrappers(int module_number TSRMLS_DC);
542 int php_shutdown_stream_wrappers(int module_number TSRMLS_DC);
547 PHPAPI int php_register_url_stream_wrapper(char *protocol, php_stream_wrapper *wrapper TSRMLS_DC);
548 PHPAPI int php_unregister_url_stream_wrapper(char *protocol TSRMLS_DC);
549 …nt php_register_url_stream_wrapper_volatile(char *protocol, php_stream_wrapper *wrapper TSRMLS_DC);
550 PHPAPI int php_unregister_url_stream_wrapper_volatile(char *protocol TSRMLS_DC);
551 …th, char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC);
552 …pper *php_stream_locate_url_wrapper(const char *path, char **path_for_open, int options TSRMLS_DC);
553 PHPAPI char *php_stream_locate_eol(php_stream *stream, char *buf, size_t buf_len TSRMLS_DC);
566 PHPAPI void php_stream_wrapper_log_error(php_stream_wrapper *wrapper, int options TSRMLS_DC, const …
568 PHPAPI void php_stream_wrapper_log_error(php_stream_wrapper *wrapper, int options TSRMLS_DC, const …
579 …ream_make_seekable(php_stream *origstream, php_stream **newstream, int flags STREAMS_DC TSRMLS_DC);