#include "php.h"
#include "php_globals.h"
#include "php_network.h"
#include "php_open_temporary_file.h"
#include "ext/standard/file.h"
#include <stddef.h>
#include <fcntl.h>
#include "php_streams_int.h"
Go to the source code of this file.
|
PHPAPI HashTable * | php_get_stream_filters_hash_global (void) |
|
PHPAPI HashTable * | _php_get_stream_filters_hash (void) |
|
PHPAPI int | php_stream_filter_register_factory (const char *filterpattern, const php_stream_filter_factory *factory) |
|
PHPAPI int | php_stream_filter_unregister_factory (const char *filterpattern) |
|
PHPAPI int | php_stream_filter_register_factory_volatile (zend_string *filterpattern, const php_stream_filter_factory *factory) |
|
PHPAPI php_stream_bucket * | php_stream_bucket_new (php_stream *stream, char *buf, size_t buflen, uint8_t own_buf, uint8_t buf_persistent) |
|
PHPAPI php_stream_bucket * | php_stream_bucket_make_writeable (php_stream_bucket *bucket) |
|
PHPAPI int | php_stream_bucket_split (php_stream_bucket *in, php_stream_bucket **left, php_stream_bucket **right, size_t length) |
|
PHPAPI void | php_stream_bucket_delref (php_stream_bucket *bucket) |
|
PHPAPI void | php_stream_bucket_prepend (php_stream_bucket_brigade *brigade, php_stream_bucket *bucket) |
|
PHPAPI void | php_stream_bucket_append (php_stream_bucket_brigade *brigade, php_stream_bucket *bucket) |
|
PHPAPI void | php_stream_bucket_unlink (php_stream_bucket *bucket) |
|
PHPAPI php_stream_filter * | php_stream_filter_create (const char *filtername, zval *filterparams, uint8_t persistent) |
|
PHPAPI php_stream_filter * | _php_stream_filter_alloc (const php_stream_filter_ops *fops, void *abstract, uint8_t persistent STREAMS_DC) |
|
PHPAPI void | php_stream_filter_free (php_stream_filter *filter) |
|
PHPAPI int | php_stream_filter_prepend_ex (php_stream_filter_chain *chain, php_stream_filter *filter) |
|
PHPAPI void | _php_stream_filter_prepend (php_stream_filter_chain *chain, php_stream_filter *filter) |
|
PHPAPI int | php_stream_filter_append_ex (php_stream_filter_chain *chain, php_stream_filter *filter) |
|
PHPAPI void | _php_stream_filter_append (php_stream_filter_chain *chain, php_stream_filter *filter) |
|
PHPAPI int | _php_stream_filter_flush (php_stream_filter *filter, int finish) |
|
PHPAPI php_stream_filter * | php_stream_filter_remove (php_stream_filter *filter, int call_dtor) |
|
◆ _php_get_stream_filters_hash()
◆ _php_stream_filter_alloc()
◆ _php_stream_filter_append()
◆ _php_stream_filter_flush()
◆ _php_stream_filter_prepend()
◆ php_get_stream_filters_hash_global()
◆ php_stream_bucket_append()
◆ php_stream_bucket_delref()
◆ php_stream_bucket_make_writeable()
◆ php_stream_bucket_new()
◆ php_stream_bucket_prepend()
◆ php_stream_bucket_split()
◆ php_stream_bucket_unlink()
◆ php_stream_filter_append_ex()
◆ php_stream_filter_create()
◆ php_stream_filter_free()
◆ php_stream_filter_prepend_ex()
◆ php_stream_filter_register_factory()
◆ php_stream_filter_register_factory_volatile()
◆ php_stream_filter_remove()
◆ php_stream_filter_unregister_factory()
PHPAPI int php_stream_filter_unregister_factory |
( |
const char * | filterpattern | ) |
|