factory          2068 ext/standard/filters.c 	php_stream_filter_factory *factory;
factory          2089 ext/standard/filters.c 					standard_filters[i].factory
factory            47 main/streams/filter.c PHPAPI int php_stream_filter_register_factory(const char *filterpattern, php_stream_filter_factory *factory)
factory            49 main/streams/filter.c 	return zend_hash_str_add_ptr(&stream_filters_hash, filterpattern, strlen(filterpattern), factory) ? SUCCESS : FAILURE;
factory            58 main/streams/filter.c PHPAPI int php_stream_filter_register_factory_volatile(const char *filterpattern, php_stream_filter_factory *factory)
factory            66 main/streams/filter.c 	return zend_hash_str_add_ptr(FG(stream_filters), (char*)filterpattern, strlen(filterpattern), factory) ? SUCCESS : FAILURE;
factory           253 main/streams/filter.c 	php_stream_filter_factory *factory = NULL;
factory           260 main/streams/filter.c 	if (NULL != (factory = zend_hash_str_find_ptr(filter_hash, filtername, n))) {
factory           261 main/streams/filter.c 		filter = factory->create_filter(filtername, filterparams, persistent);
factory           272 main/streams/filter.c 			if (NULL != (factory = zend_hash_str_find_ptr(filter_hash, wildname, strlen(wildname)))) {
factory           273 main/streams/filter.c 				filter = factory->create_filter(filtername, filterparams, persistent);
factory           284 main/streams/filter.c 		if (factory == NULL)
factory           149 main/streams/php_stream_filter_api.h PHPAPI int php_stream_filter_register_factory(const char *filterpattern, php_stream_filter_factory *factory);
factory           151 main/streams/php_stream_filter_api.h PHPAPI int php_stream_filter_register_factory_volatile(const char *filterpattern, php_stream_filter_factory *factory);
factory            37 main/streams/php_stream_transport.h PHPAPI int php_stream_xport_register(const char *protocol, php_stream_transport_factory factory);
factory            32 main/streams/transports.c PHPAPI int php_stream_xport_register(const char *protocol, php_stream_transport_factory factory)
factory            34 main/streams/transports.c 	return zend_hash_str_update_ptr(&xport_hash, protocol, strlen(protocol), factory) ? SUCCESS : FAILURE;
factory            61 main/streams/transports.c 	php_stream_transport_factory factory = NULL;
factory           110 main/streams/transports.c 		if (NULL == (factory = zend_hash_str_find_ptr(&xport_hash, tmp, n))) {
factory           126 main/streams/transports.c 	if (factory == NULL) {
factory           132 main/streams/transports.c 	stream = (factory)(protocol, n,