Home
last modified time | relevance | path

Searched refs:filterpattern (Results 1 – 2 of 2) sorted by relevance

/PHP-7.4/main/streams/
H A Dphp_stream_filter_api.h147 PHPAPI int php_stream_filter_register_factory(const char *filterpattern, const php_stream_filter_fa…
148 PHPAPI int php_stream_filter_unregister_factory(const char *filterpattern);
149 PHPAPI int php_stream_filter_register_factory_volatile(zend_string *filterpattern, const php_stream…
H A Dfilter.c45 PHPAPI int php_stream_filter_register_factory(const char *filterpattern, const php_stream_filter_fa… in php_stream_filter_register_factory() argument
48 zend_string *str = zend_string_init_interned(filterpattern, strlen(filterpattern), 1); in php_stream_filter_register_factory()
54 PHPAPI int php_stream_filter_unregister_factory(const char *filterpattern) in php_stream_filter_unregister_factory() argument
56 return zend_hash_str_del(&stream_filters_hash, filterpattern, strlen(filterpattern)); in php_stream_filter_unregister_factory()
60 PHPAPI int php_stream_filter_register_factory_volatile(zend_string *filterpattern, const php_stream… in php_stream_filter_register_factory_volatile() argument
68 return zend_hash_add_ptr(FG(stream_filters), filterpattern, (void*)factory) ? SUCCESS : FAILURE; in php_stream_filter_register_factory_volatile()

Completed in 7 milliseconds