Home
last modified time | relevance | path

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

/PHP-8.0/ext/standard/
H A Dinfo.c923 HashTable sorted_registry; in php_print_info() local
926 zend_hash_init(&sorted_registry, zend_hash_num_elements(&module_registry), NULL, NULL, 1); in php_print_info()
927 zend_hash_copy(&sorted_registry, &module_registry, NULL); in php_print_info()
928 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in php_print_info()
930 ZEND_HASH_FOREACH_PTR(&sorted_registry, module) { in php_print_info()
939 ZEND_HASH_FOREACH_PTR(&sorted_registry, module) { in php_print_info()
946 zend_hash_destroy(&sorted_registry); in php_print_info()
/PHP-8.0/sapi/cli/
H A Dphp_cli.c187 HashTable sorted_registry; in print_modules() local
190 zend_hash_init(&sorted_registry, 50, NULL, NULL, 0); in print_modules()
191 zend_hash_copy(&sorted_registry, &module_registry, NULL); in print_modules()
192 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in print_modules()
193 ZEND_HASH_FOREACH_PTR(&sorted_registry, module) { in print_modules()
196 zend_hash_destroy(&sorted_registry); in print_modules()
/PHP-8.0/sapi/fpm/fpm/
H A Dfpm_main.c197 HashTable sorted_registry; in print_modules() local
200 zend_hash_init(&sorted_registry, 50, NULL, NULL, 1); in print_modules()
201 zend_hash_copy(&sorted_registry, &module_registry, NULL); in print_modules()
202 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in print_modules()
203 ZEND_HASH_FOREACH_PTR(&sorted_registry, module) { in print_modules()
206 zend_hash_destroy(&sorted_registry); in print_modules()
/PHP-8.0/sapi/cgi/
H A Dcgi_main.c251 HashTable sorted_registry; in print_modules() local
254 zend_hash_init(&sorted_registry, 64, NULL, NULL, 1); in print_modules()
255 zend_hash_copy(&sorted_registry, &module_registry, NULL); in print_modules()
256 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in print_modules()
257 ZEND_HASH_FOREACH_PTR(&sorted_registry, module) { in print_modules()
260 zend_hash_destroy(&sorted_registry); in print_modules()

Completed in 44 milliseconds