Lines Matching refs:PHPAPI

33 PHPAPI int php_file_le_stream(void);
34 PHPAPI int php_file_le_pstream(void);
35 PHPAPI int php_file_le_stream_filter(void);
249 PHPAPI php_stream *_php_stream_alloc(php_stream_ops *ops, void *abstract,
278 PHPAPI php_stream *php_stream_encloses(php_stream *enclosing, php_stream *enclosed);
280 PHPAPI int _php_stream_free_enclosed(php_stream *stream_enclosed, int close_options);
282 PHPAPI int php_stream_from_persistent_id(const char *persistent_id, php_stream **stream);
298 PHPAPI int _php_stream_free(php_stream *stream, int close_options);
303 PHPAPI int _php_stream_seek(php_stream *stream, zend_off_t offset, int whence);
307 PHPAPI zend_off_t _php_stream_tell(php_stream *stream);
310 PHPAPI size_t _php_stream_read(php_stream *stream, char *buf, size_t count);
313 PHPAPI size_t _php_stream_write(php_stream *stream, const char *buf, size_t count);
317 PHPAPI void _php_stream_fill_read_buffer(php_stream *stream, size_t size);
320 PHPAPI size_t _php_stream_printf(php_stream *stream, const char *fmt, ...) PHP_ATTRIBUTE_FORMAT(pri…
325 PHPAPI int _php_stream_eof(php_stream *stream);
328 PHPAPI int _php_stream_getc(php_stream *stream);
331 PHPAPI int _php_stream_putc(php_stream *stream, int c);
334 PHPAPI int _php_stream_flush(php_stream *stream, int closing);
337 PHPAPI char *_php_stream_get_line(php_stream *stream, char *buf, size_t maxlen, size_t *returned_le…
341 PHPAPI zend_string *php_stream_get_record(php_stream *stream, size_t maxlen, const char *delim, siz…
344 PHPAPI int _php_stream_puts(php_stream *stream, const char *buf);
347 PHPAPI int _php_stream_stat(php_stream *stream, php_stream_statbuf *ssb);
350 PHPAPI int _php_stream_stat_path(const char *path, int flags, php_stream_statbuf *ssb, php_stream_c…
354 PHPAPI int _php_stream_mkdir(const char *path, int mode, int options, php_stream_context *context);
357 PHPAPI int _php_stream_rmdir(const char *path, int options, php_stream_context *context);
360 PHPAPI php_stream *_php_stream_opendir(const char *path, int options, php_stream_context *context S…
362 PHPAPI php_stream_dirent *_php_stream_readdir(php_stream *dirstream, php_stream_dirent *ent);
367 PHPAPI int php_stream_dirent_alphasort(const zend_string **a, const zend_string **b);
368 PHPAPI int php_stream_dirent_alphasortr(const zend_string **a, const zend_string **b);
370 PHPAPI int _php_stream_scandir(const char *dirname, zend_string **namelist[], int flags, php_stream…
374 PHPAPI int _php_stream_set_option(php_stream *stream, int option, int value, void *ptrparam);
431 PHPAPI int _php_stream_truncate_set_size(php_stream *stream, size_t newsize);
455 PHPAPI size_t _php_stream_copy_to_stream(php_stream *src, php_stream *dest, size_t maxlen STREAMS_D…
457 PHPAPI int _php_stream_copy_to_stream_ex(php_stream *src, php_stream *dest, size_t maxlen, size_t *…
463 PHPAPI zend_string *_php_stream_copy_to_mem(php_stream *src, size_t maxlen, int persistent STREAMS_…
467 PHPAPI size_t _php_stream_passthru(php_stream * src STREAMS_DC);
493 PHPAPI int _php_stream_cast(php_stream *stream, int castas, void **ret, int show_err);
564 PHPAPI int php_register_url_stream_wrapper(const char *protocol, php_stream_wrapper *wrapper);
565 PHPAPI int php_unregister_url_stream_wrapper(const char *protocol);
566 PHPAPI int php_register_url_stream_wrapper_volatile(const char *protocol, php_stream_wrapper *wrapp…
567 PHPAPI int php_unregister_url_stream_wrapper_volatile(const char *protocol);
568 PHPAPI php_stream *_php_stream_open_wrapper_ex(const char *path, const char *mode, int options, zen…
569 PHPAPI php_stream_wrapper *php_stream_locate_url_wrapper(const char *path, const char **path_for_op…
570 PHPAPI const char *php_stream_locate_eol(php_stream *stream, zend_string *buf);
576 PHPAPI void php_stream_wrapper_log_error(php_stream_wrapper *wrapper, int options, const char *fmt,…
586 PHPAPI int _php_stream_make_seekable(php_stream *origstream, php_stream **newstream, int flags STRE…
590 PHPAPI HashTable *_php_stream_get_url_stream_wrappers_hash(void);
592 PHPAPI HashTable *php_stream_get_url_stream_wrappers_hash_global(void);
593 PHPAPI HashTable *_php_get_stream_filters_hash(void);
595 PHPAPI HashTable *php_get_stream_filters_hash_global(void);