Home
last modified time | relevance | path

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

/PHP-7.0/ext/standard/
H A Dinfo.c987 HashTable sorted_registry; in php_print_info() local
989 zend_hash_init(&sorted_registry, zend_hash_num_elements(&module_registry), NULL, NULL, 1); in php_print_info()
990 zend_hash_copy(&sorted_registry, &module_registry, NULL); in php_print_info()
991 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in php_print_info()
993 zend_hash_apply(&sorted_registry, _display_module_info_func); in php_print_info()
998 zend_hash_apply(&sorted_registry, _display_module_info_def); in php_print_info()
1001 zend_hash_destroy(&sorted_registry); in php_print_info()
/PHP-7.0/sapi/cli/
H A Dphp_cli.c202 HashTable sorted_registry; in print_modules() local
204 zend_hash_init(&sorted_registry, 50, NULL, NULL, 0); in print_modules()
205 zend_hash_copy(&sorted_registry, &module_registry, NULL); in print_modules()
206 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in print_modules()
207 zend_hash_apply(&sorted_registry, print_module_info); in print_modules()
208 zend_hash_destroy(&sorted_registry); in print_modules()
/PHP-7.0/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.0/sapi/cgi/
H A Dcgi_main.c253 HashTable sorted_registry; in print_modules() local
255 zend_hash_init(&sorted_registry, 64, NULL, NULL, 1); in print_modules()
256 zend_hash_copy(&sorted_registry, &module_registry, NULL); in print_modules()
257 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in print_modules()
258 zend_hash_apply(&sorted_registry, print_module_info); in print_modules()
259 zend_hash_destroy(&sorted_registry); in print_modules()

Completed in 24 milliseconds