Home
last modified time | relevance | path

Searched refs:sorted_registry (Results 1 – 4 of 4) sorted by relevance

/PHP-7.2/ext/standard/
H A Dinfo.c954 HashTable sorted_registry; in php_print_info() local
956 zend_hash_init(&sorted_registry, zend_hash_num_elements(&module_registry), NULL, NULL, 1); in php_print_info()
957 zend_hash_copy(&sorted_registry, &module_registry, NULL); in php_print_info()
958 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in php_print_info()
960 zend_hash_apply(&sorted_registry, _display_module_info_func); in php_print_info()
965 zend_hash_apply(&sorted_registry, _display_module_info_def); in php_print_info()
968 zend_hash_destroy(&sorted_registry); in php_print_info()
/PHP-7.2/sapi/cli/
H A Dphp_cli.c207 HashTable sorted_registry; in print_modules() local
209 zend_hash_init(&sorted_registry, 50, NULL, NULL, 0); in print_modules()
210 zend_hash_copy(&sorted_registry, &module_registry, NULL); in print_modules()
211 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in print_modules()
212 zend_hash_apply(&sorted_registry, print_module_info); in print_modules()
213 zend_hash_destroy(&sorted_registry); in print_modules()
/PHP-7.2/sapi/fpm/fpm/
H A Dfpm_main.c242 HashTable sorted_registry; in print_modules() local
244 zend_hash_init(&sorted_registry, 50, NULL, NULL, 1); in print_modules()
245 zend_hash_copy(&sorted_registry, &module_registry, NULL); in print_modules()
246 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in print_modules()
247 zend_hash_apply(&sorted_registry, print_module_info); in print_modules()
248 zend_hash_destroy(&sorted_registry); in print_modules()
/PHP-7.2/sapi/cgi/
H A Dcgi_main.c267 HashTable sorted_registry; in print_modules() local
269 zend_hash_init(&sorted_registry, 64, NULL, NULL, 1); in print_modules()
270 zend_hash_copy(&sorted_registry, &module_registry, NULL); in print_modules()
271 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in print_modules()
272 zend_hash_apply(&sorted_registry, print_module_info); in print_modules()
273 zend_hash_destroy(&sorted_registry); in print_modules()

Completed in 22 milliseconds