Home
last modified time | relevance | path

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

/PHP-8.2/main/streams/
H A Dfilter.c39 return (FG(stream_filters) ? FG(stream_filters) : &stream_filters_hash); in _php_get_stream_filters_hash()
60 if (!FG(stream_filters)) { in php_stream_filter_register_factory_volatile()
61 ALLOC_HASHTABLE(FG(stream_filters)); in php_stream_filter_register_factory_volatile()
62 …zend_hash_init(FG(stream_filters), zend_hash_num_elements(&stream_filters_hash) + 1, NULL, NULL, 0… in php_stream_filter_register_factory_volatile()
63 zend_hash_copy(FG(stream_filters), &stream_filters_hash, NULL); in php_stream_filter_register_factory_volatile()
66 return zend_hash_add_ptr(FG(stream_filters), filterpattern, (void*)factory) ? SUCCESS : FAILURE; in php_stream_filter_register_factory_volatile()
222 HashTable *filter_hash = (FG(stream_filters) ? FG(stream_filters) : &stream_filters_hash); in php_stream_filter_create()
H A Dstreams.c1802 if (FG(stream_filters)) { in php_shutdown_stream_hashes()
1803 zend_hash_destroy(FG(stream_filters)); in php_shutdown_stream_hashes()
1804 efree(FG(stream_filters)); in php_shutdown_stream_hashes()
1805 FG(stream_filters) = NULL; in php_shutdown_stream_hashes()
/PHP-8.2/ext/standard/
H A Dfile.h97 HashTable *stream_filters; /* per-request copy of stream_filters_hash */ member
H A Dbasic_functions.c437 FG(stream_filters) = NULL; in PHP_RINIT_FUNCTION()

Completed in 20 milliseconds