Searched refs:filterpattern (Results 1 – 2 of 2) sorted by relevance
/PHP-8.3/main/streams/ |
H A D | php_stream_filter_api.h | 145 PHPAPI int php_stream_filter_register_factory(const char *filterpattern, const php_stream_filter_fa… 146 PHPAPI int php_stream_filter_unregister_factory(const char *filterpattern); 147 PHPAPI int php_stream_filter_register_factory_volatile(zend_string *filterpattern, const php_stream…
|
H A D | filter.c | 43 PHPAPI int php_stream_filter_register_factory(const char *filterpattern, const php_stream_filter_fa… in php_stream_filter_register_factory() argument 46 zend_string *str = zend_string_init_interned(filterpattern, strlen(filterpattern), 1); in php_stream_filter_register_factory() 52 PHPAPI int php_stream_filter_unregister_factory(const char *filterpattern) in php_stream_filter_unregister_factory() argument 54 return zend_hash_str_del(&stream_filters_hash, filterpattern, strlen(filterpattern)); in php_stream_filter_unregister_factory() 58 PHPAPI int php_stream_filter_register_factory_volatile(zend_string *filterpattern, const php_stream… in php_stream_filter_register_factory_volatile() argument 66 return zend_hash_add_ptr(FG(stream_filters), filterpattern, (void*)factory) ? SUCCESS : FAILURE; in php_stream_filter_register_factory_volatile()
|
Completed in 7 milliseconds