Home
last modified time | relevance | path

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

/php-src/ext/standard/
H A Dinfo.c961 HashTable sorted_registry; in php_print_info() local
964 zend_hash_init(&sorted_registry, zend_hash_num_elements(&module_registry), NULL, NULL, 1); in php_print_info()
965 zend_hash_copy(&sorted_registry, &module_registry, NULL); in php_print_info()
966 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in php_print_info()
968 ZEND_HASH_MAP_FOREACH_PTR(&sorted_registry, module) { in php_print_info()
977 ZEND_HASH_MAP_FOREACH_PTR(&sorted_registry, module) { in php_print_info()
984 zend_hash_destroy(&sorted_registry); in php_print_info()
/php-src/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-src/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-src/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 21 milliseconds