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.c941 HashTable sorted_registry; in php_print_info() local
944 zend_hash_init(&sorted_registry, zend_hash_num_elements(&module_registry), NULL, NULL, 1); in php_print_info()
945 zend_hash_copy(&sorted_registry, &module_registry, NULL); in php_print_info()
946 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in php_print_info()
948 ZEND_HASH_MAP_FOREACH_PTR(&sorted_registry, module) { in php_print_info()
957 ZEND_HASH_MAP_FOREACH_PTR(&sorted_registry, module) { in php_print_info()
964 zend_hash_destroy(&sorted_registry); in php_print_info()
/php-src/sapi/cli/
H A Dphp_cli.c178 HashTable sorted_registry; in print_modules() local
181 zend_hash_init(&sorted_registry, 50, NULL, NULL, 0); in print_modules()
182 zend_hash_copy(&sorted_registry, &module_registry, NULL); in print_modules()
183 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in print_modules()
184 ZEND_HASH_MAP_FOREACH_PTR(&sorted_registry, module) { in print_modules()
187 zend_hash_destroy(&sorted_registry); in print_modules()
/php-src/sapi/fpm/fpm/
H A Dfpm_main.c196 HashTable sorted_registry; in print_modules() local
199 zend_hash_init(&sorted_registry, 50, NULL, NULL, 1); in print_modules()
200 zend_hash_copy(&sorted_registry, &module_registry, NULL); in print_modules()
201 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in print_modules()
202 ZEND_HASH_MAP_FOREACH_PTR(&sorted_registry, module) { in print_modules()
205 zend_hash_destroy(&sorted_registry); in print_modules()
/php-src/sapi/cgi/
H A Dcgi_main.c255 HashTable sorted_registry; in print_modules() local
258 zend_hash_init(&sorted_registry, 64, NULL, NULL, 1); in print_modules()
259 zend_hash_copy(&sorted_registry, &module_registry, NULL); in print_modules()
260 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in print_modules()
261 ZEND_HASH_MAP_FOREACH_PTR(&sorted_registry, module) { in print_modules()
264 zend_hash_destroy(&sorted_registry); in print_modules()

Completed in 21 milliseconds