Searched refs:stream_filters (Results 1 – 4 of 4) sorted by relevance
43 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), NULL, NULL, 1); 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_str_add_ptr(FG(stream_filters), (char*)filterpattern, strlen(filterpattern), fact… in php_stream_filter_register_factory_volatile()252 HashTable *filter_hash = (FG(stream_filters) ? FG(stream_filters) : &stream_filters_hash); in php_stream_filter_create()
1636 if (FG(stream_filters)) { in php_shutdown_stream_hashes()1637 zend_hash_destroy(FG(stream_filters)); in php_shutdown_stream_hashes()1638 efree(FG(stream_filters)); in php_shutdown_stream_hashes()1639 FG(stream_filters) = NULL; in php_shutdown_stream_hashes()
129 HashTable *stream_filters; /* per-request copy of stream_filters_hash */ member
3799 FG(stream_filters) = NULL; in PHP_RINIT_FUNCTION()
Completed in 22 milliseconds