Home
last modified time | relevance | path

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

/PHP-7.3/ext/standard/
H A Dinfo.c947 HashTable sorted_registry; in php_print_info() local
949 zend_hash_init(&sorted_registry, zend_hash_num_elements(&module_registry), NULL, NULL, 1); in php_print_info()
950 zend_hash_copy(&sorted_registry, &module_registry, NULL); in php_print_info()
951 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in php_print_info()
953 zend_hash_apply(&sorted_registry, _display_module_info_func); in php_print_info()
958 zend_hash_apply(&sorted_registry, _display_module_info_def); in php_print_info()
961 zend_hash_destroy(&sorted_registry); in php_print_info()
/PHP-7.3/sapi/cli/
H A Dphp_cli.c205 HashTable sorted_registry; in print_modules() local
207 zend_hash_init(&sorted_registry, 50, NULL, NULL, 0); in print_modules()
208 zend_hash_copy(&sorted_registry, &module_registry, NULL); in print_modules()
209 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in print_modules()
210 zend_hash_apply(&sorted_registry, print_module_info); in print_modules()
211 zend_hash_destroy(&sorted_registry); in print_modules()
/PHP-7.3/sapi/fpm/fpm/
H A Dfpm_main.c211 HashTable sorted_registry; in print_modules() local
213 zend_hash_init(&sorted_registry, 50, NULL, NULL, 1); in print_modules()
214 zend_hash_copy(&sorted_registry, &module_registry, NULL); in print_modules()
215 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in print_modules()
216 zend_hash_apply(&sorted_registry, print_module_info); in print_modules()
217 zend_hash_destroy(&sorted_registry); in print_modules()
/PHP-7.3/sapi/cgi/
H A Dcgi_main.c265 HashTable sorted_registry; in print_modules() local
267 zend_hash_init(&sorted_registry, 64, NULL, NULL, 1); in print_modules()
268 zend_hash_copy(&sorted_registry, &module_registry, NULL); in print_modules()
269 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in print_modules()
270 zend_hash_apply(&sorted_registry, print_module_info); in print_modules()
271 zend_hash_destroy(&sorted_registry); in print_modules()

Completed in 23 milliseconds