Home
last modified time | relevance | path

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

/PHP-7.1/ext/standard/
H A Dinfo.c989 HashTable sorted_registry; in php_print_info() local
991 zend_hash_init(&sorted_registry, zend_hash_num_elements(&module_registry), NULL, NULL, 1); in php_print_info()
992 zend_hash_copy(&sorted_registry, &module_registry, NULL); in php_print_info()
993 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in php_print_info()
995 zend_hash_apply(&sorted_registry, _display_module_info_func); in php_print_info()
1000 zend_hash_apply(&sorted_registry, _display_module_info_def); in php_print_info()
1003 zend_hash_destroy(&sorted_registry); in php_print_info()
/PHP-7.1/sapi/cli/
H A Dphp_cli.c206 HashTable sorted_registry; in print_modules() local
208 zend_hash_init(&sorted_registry, 50, NULL, NULL, 0); in print_modules()
209 zend_hash_copy(&sorted_registry, &module_registry, NULL); in print_modules()
210 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in print_modules()
211 zend_hash_apply(&sorted_registry, print_module_info); in print_modules()
212 zend_hash_destroy(&sorted_registry); in print_modules()
/PHP-7.1/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.1/sapi/cgi/
H A Dcgi_main.c263 HashTable sorted_registry; in print_modules() local
265 zend_hash_init(&sorted_registry, 64, NULL, NULL, 1); in print_modules()
266 zend_hash_copy(&sorted_registry, &module_registry, NULL); in print_modules()
267 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in print_modules()
268 zend_hash_apply(&sorted_registry, print_module_info); in print_modules()
269 zend_hash_destroy(&sorted_registry); in print_modules()

Completed in 24 milliseconds