Searched refs:stream_filters (Results 1 – 4 of 4) sorted by relevance
/PHP-5.4/main/streams/ |
H A D | filter.c | 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() 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), NULL, NULL, 1); in php_stream_filter_register_factory_volatile() 65 …zend_hash_copy(FG(stream_filters), &stream_filters_hash, NULL, &tmpfactory, sizeof(php_stream_filt… in php_stream_filter_register_factory_volatile() 68 …return zend_hash_add(FG(stream_filters), (char*)filterpattern, strlen(filterpattern) + 1, factory,… in php_stream_filter_register_factory_volatile() 254 HashTable *filter_hash = (FG(stream_filters) ? FG(stream_filters) : &stream_filters_hash); in php_stream_filter_create()
|
H A D | streams.c | 1642 if (FG(stream_filters)) { in php_shutdown_stream_hashes() 1643 zend_hash_destroy(FG(stream_filters)); in php_shutdown_stream_hashes() 1644 efree(FG(stream_filters)); in php_shutdown_stream_hashes() 1645 FG(stream_filters) = NULL; in php_shutdown_stream_hashes()
|
/PHP-5.4/ext/standard/ |
H A D | file.h | 127 HashTable *stream_filters; /* per-request copy of stream_filters_hash */ member
|
H A D | basic_functions.c | 3726 FG(stream_filters) = NULL; in PHP_RINIT_FUNCTION()
|
Completed in 31 milliseconds