Home
last modified time | relevance | path

Searched refs:stream_filters (Results 1 – 4 of 4) sorted by relevance

/PHP-7.4/main/streams/
H A Dfilter.c41 return (FG(stream_filters) ? FG(stream_filters) : &stream_filters_hash); in _php_get_stream_filters_hash()
62 if (!FG(stream_filters)) { in php_stream_filter_register_factory_volatile()
63 ALLOC_HASHTABLE(FG(stream_filters)); in php_stream_filter_register_factory_volatile()
64 …zend_hash_init(FG(stream_filters), zend_hash_num_elements(&stream_filters_hash) + 1, NULL, NULL, 0… in php_stream_filter_register_factory_volatile()
65 zend_hash_copy(FG(stream_filters), &stream_filters_hash, NULL); in php_stream_filter_register_factory_volatile()
68 return zend_hash_add_ptr(FG(stream_filters), filterpattern, (void*)factory) ? SUCCESS : FAILURE; in php_stream_filter_register_factory_volatile()
224 HashTable *filter_hash = (FG(stream_filters) ? FG(stream_filters) : &stream_filters_hash); in php_stream_filter_create()
H A Dstreams.c1700 if (FG(stream_filters)) { in php_shutdown_stream_hashes()
1701 zend_hash_destroy(FG(stream_filters)); in php_shutdown_stream_hashes()
1702 efree(FG(stream_filters)); in php_shutdown_stream_hashes()
1703 FG(stream_filters) = NULL; in php_shutdown_stream_hashes()
/PHP-7.4/ext/standard/
H A Dfile.h127 HashTable *stream_filters; /* per-request copy of stream_filters_hash */ member
H A Dbasic_functions.c3814 FG(stream_filters) = NULL; in PHP_RINIT_FUNCTION()

Completed in 23 milliseconds