Searched refs:sorted_registry (Results 1 – 4 of 4) sorted by relevance
/php-src/ext/standard/ |
H A D | info.c | 941 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 D | php_cli.c | 178 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 D | fpm_main.c | 194 HashTable sorted_registry; in print_modules() local 197 zend_hash_init(&sorted_registry, 50, NULL, NULL, 1); in print_modules() 198 zend_hash_copy(&sorted_registry, &module_registry, NULL); in print_modules() 199 zend_hash_sort(&sorted_registry, module_name_cmp, 0); in print_modules() 200 ZEND_HASH_MAP_FOREACH_PTR(&sorted_registry, module) { in print_modules() 203 zend_hash_destroy(&sorted_registry); in print_modules()
|
/php-src/sapi/cgi/ |
H A D | cgi_main.c | 255 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 18 milliseconds