Home
last modified time | relevance | path

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

/PHP-8.2/ext/standard/
H A Dinfo.c958 HashTable sorted_registry; in php_print_info() local
961 zend_hash_init(&sorted_registry, zend_hash_num_elements(&module_registry), NULL, NULL, 1); in php_print_info()
962 zend_hash_copy(&sorted_registry, &module_registry, NULL); in php_print_info()
963 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in php_print_info()
965 ZEND_HASH_MAP_FOREACH_PTR(&sorted_registry, module) { in php_print_info()
974 ZEND_HASH_MAP_FOREACH_PTR(&sorted_registry, module) { in php_print_info()
981 zend_hash_destroy(&sorted_registry); in php_print_info()
/PHP-8.2/sapi/cli/
H A Dphp_cli.c191 HashTable sorted_registry; in print_modules() local
194 zend_hash_init(&sorted_registry, 50, NULL, NULL, 0); in print_modules()
195 zend_hash_copy(&sorted_registry, &module_registry, NULL); in print_modules()
196 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in print_modules()
197 ZEND_HASH_MAP_FOREACH_PTR(&sorted_registry, module) { in print_modules()
200 zend_hash_destroy(&sorted_registry); in print_modules()
/PHP-8.2/sapi/fpm/fpm/
H A Dfpm_main.c199 HashTable sorted_registry; in print_modules() local
202 zend_hash_init(&sorted_registry, 50, NULL, NULL, 1); in print_modules()
203 zend_hash_copy(&sorted_registry, &module_registry, NULL); in print_modules()
204 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in print_modules()
205 ZEND_HASH_MAP_FOREACH_PTR(&sorted_registry, module) { in print_modules()
208 zend_hash_destroy(&sorted_registry); in print_modules()
/PHP-8.2/sapi/cgi/
H A Dcgi_main.c252 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_MAP_FOREACH_PTR(&sorted_registry, module) { in print_modules()
261 zend_hash_destroy(&sorted_registry); in print_modules()

Completed in 43 milliseconds