Lines Matching refs:PHPAPI

31 PHPAPI int php_file_le_stream(void);
32 PHPAPI int php_file_le_pstream(void);
33 PHPAPI int php_file_le_stream_filter(void);
240 PHPAPI php_stream *_php_stream_alloc(php_stream_ops *ops, void *abstract,
262 PHPAPI php_stream *php_stream_encloses(php_stream *enclosing, php_stream *enclosed);
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 PHPAPI char *_php_stream_get_line(php_stream *stream, char *buf, size_t maxlen, size_t *returned_le…
328 PHPAPI char *php_stream_get_record(php_stream *stream, size_t maxlen, size_t *returned_len, char *d…
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 PHPAPI int _php_stream_stat_path(char *path, int flags, php_stream_statbuf *ssb, php_stream_context…
341 PHPAPI int _php_stream_mkdir(char *path, int mode, int options, php_stream_context *context TSRMLS_…
344 PHPAPI int _php_stream_rmdir(char *path, int options, php_stream_context *context TSRMLS_DC);
347 PHPAPI php_stream *_php_stream_opendir(char *path, int options, php_stream_context *context STREAMS…
349 PHPAPI php_stream_dirent *_php_stream_readdir(php_stream *dirstream, php_stream_dirent *ent TSRMLS_…
354 PHPAPI int php_stream_dirent_alphasort(const char **a, const char **b);
355 PHPAPI int php_stream_dirent_alphasortr(const char **a, const char **b);
357 PHPAPI int _php_stream_scandir(char *dirname, char **namelist[], int flags, php_stream_context *con…
361 PHPAPI int _php_stream_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_…
418 PHPAPI int _php_stream_truncate_set_size(php_stream *stream, size_t newsize TSRMLS_DC);
439 PHPAPI size_t _php_stream_copy_to_stream(php_stream *src, php_stream *dest, size_t maxlen STREAMS_D…
441 PHPAPI int _php_stream_copy_to_stream_ex(php_stream *src, php_stream *dest, size_t maxlen, size_t *…
447 PHPAPI size_t _php_stream_copy_to_mem(php_stream *src, char **buf, size_t maxlen,
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);
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 PHPAPI int php_register_url_stream_wrapper_volatile(char *protocol, php_stream_wrapper *wrapper TSR…
550 PHPAPI int php_unregister_url_stream_wrapper_volatile(char *protocol TSRMLS_DC);
551 PHPAPI php_stream *_php_stream_open_wrapper_ex(char *path, char *mode, int options, char **opened_p…
552 PHPAPI php_stream_wrapper *php_stream_locate_url_wrapper(const char *path, char **path_for_open, in…
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 PHPAPI int _php_stream_make_seekable(php_stream *origstream, php_stream **newstream, int flags STRE…
583 PHPAPI HashTable *_php_stream_get_url_stream_wrappers_hash(TSRMLS_D);
585 PHPAPI HashTable *php_stream_get_url_stream_wrappers_hash_global(void);
586 PHPAPI HashTable *_php_get_stream_filters_hash(TSRMLS_D);
588 PHPAPI HashTable *php_get_stream_filters_hash_global(void);