Home
last modified time | relevance | path

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

/PHP-7.4/ext/standard/
H A Dinfo.c928 HashTable sorted_registry; in php_print_info() local
931 zend_hash_init(&sorted_registry, zend_hash_num_elements(&module_registry), NULL, NULL, 1); in php_print_info()
932 zend_hash_copy(&sorted_registry, &module_registry, NULL); in php_print_info()
933 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in php_print_info()
935 ZEND_HASH_FOREACH_PTR(&sorted_registry, module) { in php_print_info()
944 ZEND_HASH_FOREACH_PTR(&sorted_registry, module) { in php_print_info()
951 zend_hash_destroy(&sorted_registry); in php_print_info()
/PHP-7.4/sapi/cli/
H A Dphp_cli.c190 HashTable sorted_registry; in print_modules() local
193 zend_hash_init(&sorted_registry, 50, NULL, NULL, 0); in print_modules()
194 zend_hash_copy(&sorted_registry, &module_registry, NULL); in print_modules()
195 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in print_modules()
196 ZEND_HASH_FOREACH_PTR(&sorted_registry, module) { in print_modules()
199 zend_hash_destroy(&sorted_registry); in print_modules()
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_main.c201 HashTable sorted_registry; in print_modules() local
204 zend_hash_init(&sorted_registry, 50, NULL, NULL, 1); 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_FOREACH_PTR(&sorted_registry, module) { in print_modules()
210 zend_hash_destroy(&sorted_registry); in print_modules()
/PHP-7.4/sapi/cgi/
H A Dcgi_main.c254 HashTable sorted_registry; in print_modules() local
257 zend_hash_init(&sorted_registry, 64, NULL, NULL, 1); in print_modules()
258 zend_hash_copy(&sorted_registry, &module_registry, NULL); in print_modules()
259 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in print_modules()
260 ZEND_HASH_FOREACH_PTR(&sorted_registry, module) { in print_modules()
263 zend_hash_destroy(&sorted_registry); in print_modules()

Completed in 26 milliseconds