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);
241 const char *persistent_id, const char *mode STREAMS_DC TSRMLS_DC);
262 PHPAPI int php_stream_from_persistent_id(const char *persistent_id, php_stream **stream TSRMLS_DC);
276 PHPAPI int _php_stream_free(php_stream *stream, int close_options TSRMLS_DC);
281 PHPAPI int _php_stream_seek(php_stream *stream, off_t offset, int whence TSRMLS_DC);
285 PHPAPI off_t _php_stream_tell(php_stream *stream TSRMLS_DC);
288 PHPAPI size_t _php_stream_read(php_stream *stream, char *buf, size_t count TSRMLS_DC);
291 PHPAPI size_t _php_stream_write(php_stream *stream, const char *buf, size_t count TSRMLS_DC);
296 PHPAPI size_t _php_stream_printf(php_stream *stream TSRMLS_DC, const char *fmt, ...) PHP_ATTRIBUTE_…
298 PHPAPI size_t _php_stream_printf(php_stream *stream TSRMLS_DC, const char *fmt, ...) PHP_ATTRIBUTE_…
304 PHPAPI int _php_stream_eof(php_stream *stream TSRMLS_DC);
307 PHPAPI int _php_stream_getc(php_stream *stream TSRMLS_DC);
310 PHPAPI int _php_stream_putc(php_stream *stream, int c TSRMLS_DC);
313 PHPAPI int _php_stream_flush(php_stream *stream, int closing TSRMLS_DC);
316 …_php_stream_get_line(php_stream *stream, char *buf, size_t maxlen, size_t *returned_len TSRMLS_DC);
320 …(php_stream *stream, size_t maxlen, size_t *returned_len, char *delim, size_t delim_len TSRMLS_DC);
323 PHPAPI int _php_stream_puts(php_stream *stream, char *buf TSRMLS_DC);
326 PHPAPI int _php_stream_stat(php_stream *stream, php_stream_statbuf *ssb TSRMLS_DC);
329 …m_stat_path(char *path, int flags, php_stream_statbuf *ssb, php_stream_context *context TSRMLS_DC);
333 …PI int _php_stream_mkdir(char *path, int mode, int options, php_stream_context *context TSRMLS_DC);
336 PHPAPI int _php_stream_rmdir(char *path, int options, php_stream_context *context TSRMLS_DC);
339 …am *_php_stream_opendir(char *path, int options, php_stream_context *context STREAMS_DC TSRMLS_DC);
341 …PI php_stream_dirent *_php_stream_readdir(php_stream *dirstream, php_stream_dirent *ent TSRMLS_DC);
350 int (*compare) (const char **a, const char **b) TSRMLS_DC);
353 …PI int _php_stream_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_DC);
409 PHPAPI int _php_stream_truncate_set_size(php_stream *stream, size_t newsize TSRMLS_DC);
430 … _php_stream_copy_to_stream(php_stream *src, php_stream *dest, size_t maxlen STREAMS_DC TSRMLS_DC);
432 …y_to_stream_ex(php_stream *src, php_stream *dest, size_t maxlen, size_t *len STREAMS_DC TSRMLS_DC);
439 int persistent STREAMS_DC TSRMLS_DC);
443 PHPAPI size_t _php_stream_passthru(php_stream * src STREAMS_DC TSRMLS_DC);
469 PHPAPI int _php_stream_cast(php_stream *stream, int castas, void **ret, int show_err TSRMLS_DC);
532 int php_init_stream_wrappers(int module_number TSRMLS_DC);
533 int php_shutdown_stream_wrappers(int module_number TSRMLS_DC);
538 PHPAPI int php_register_url_stream_wrapper(char *protocol, php_stream_wrapper *wrapper TSRMLS_DC);
539 PHPAPI int php_unregister_url_stream_wrapper(char *protocol TSRMLS_DC);
540 …nt php_register_url_stream_wrapper_volatile(char *protocol, php_stream_wrapper *wrapper TSRMLS_DC);
541 PHPAPI int php_unregister_url_stream_wrapper_volatile(char *protocol TSRMLS_DC);
542 …th, char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC);
543 …pper *php_stream_locate_url_wrapper(const char *path, char **path_for_open, int options TSRMLS_DC);
544 PHPAPI char *php_stream_locate_eol(php_stream *stream, char *buf, size_t buf_len TSRMLS_DC);
557 PHPAPI void php_stream_wrapper_log_error(php_stream_wrapper *wrapper, int options TSRMLS_DC, const …
559 PHPAPI void php_stream_wrapper_log_error(php_stream_wrapper *wrapper, int options TSRMLS_DC, const …
570 …ream_make_seekable(php_stream *origstream, php_stream **newstream, int flags STREAMS_DC TSRMLS_DC);