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 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 PHPAPI char *_php_stream_get_line(php_stream *stream, char *buf, size_t maxlen, size_t *returned_le…
320 PHPAPI char *php_stream_get_record(php_stream *stream, size_t maxlen, size_t *returned_len, char *d…
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 PHPAPI int _php_stream_stat_path(char *path, int flags, php_stream_statbuf *ssb, php_stream_context…
333 PHPAPI int _php_stream_mkdir(char *path, int mode, int options, php_stream_context *context TSRMLS_…
336 PHPAPI int _php_stream_rmdir(char *path, int options, php_stream_context *context TSRMLS_DC);
339 PHPAPI php_stream *_php_stream_opendir(char *path, int options, php_stream_context *context STREAMS…
341 PHPAPI php_stream_dirent *_php_stream_readdir(php_stream *dirstream, php_stream_dirent *ent TSRMLS_…
346 PHPAPI int php_stream_dirent_alphasort(const char **a, const char **b);
347 PHPAPI int php_stream_dirent_alphasortr(const char **a, const char **b);
349 PHPAPI int _php_stream_scandir(char *dirname, char **namelist[], int flags, php_stream_context *con…
353 PHPAPI int _php_stream_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_…
409 PHPAPI int _php_stream_truncate_set_size(php_stream *stream, size_t newsize TSRMLS_DC);
430 PHPAPI size_t _php_stream_copy_to_stream(php_stream *src, php_stream *dest, size_t maxlen STREAMS_D…
432 PHPAPI size_t _php_stream_copy_to_stream_ex(php_stream *src, php_stream *dest, size_t maxlen, size_…
438 PHPAPI size_t _php_stream_copy_to_mem(php_stream *src, char **buf, size_t maxlen,
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);
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 PHPAPI int php_register_url_stream_wrapper_volatile(char *protocol, php_stream_wrapper *wrapper TSR…
541 PHPAPI int php_unregister_url_stream_wrapper_volatile(char *protocol TSRMLS_DC);
542 PHPAPI php_stream *_php_stream_open_wrapper_ex(char *path, char *mode, int options, char **opened_p…
543 PHPAPI php_stream_wrapper *php_stream_locate_url_wrapper(const char *path, char **path_for_open, in…
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 PHPAPI int _php_stream_make_seekable(php_stream *origstream, php_stream **newstream, int flags STRE…
574 PHPAPI HashTable *_php_stream_get_url_stream_wrappers_hash(TSRMLS_D);
576 PHPAPI HashTable *php_stream_get_url_stream_wrappers_hash_global(void);
577 PHPAPI HashTable *_php_get_stream_filters_hash(TSRMLS_D);
579 PHPAPI HashTable *php_get_stream_filters_hash_global(void);