Home
last modified time | relevance | path

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

/PHP-5.5/ext/standard/
H A Dinfo.c1066 HashTable sorted_registry; in php_print_info() local
1069 zend_hash_init(&sorted_registry, zend_hash_num_elements(&module_registry), NULL, NULL, 1); in php_print_info()
1070 zend_hash_copy(&sorted_registry, &module_registry, NULL, &tmp, sizeof(zend_module_entry)); in php_print_info()
1071 zend_hash_sort(&sorted_registry, zend_qsort, module_name_cmp, 0 TSRMLS_CC); in php_print_info()
1073 zend_hash_apply(&sorted_registry, (apply_func_t) _display_module_info_func TSRMLS_CC); in php_print_info()
1078 zend_hash_apply(&sorted_registry, (apply_func_t) _display_module_info_def TSRMLS_CC); in php_print_info()
1081 zend_hash_destroy(&sorted_registry); in php_print_info()
/PHP-5.5/sapi/cli/
H A Dphp_cli.c195 HashTable sorted_registry; in print_modules() local
198 zend_hash_init(&sorted_registry, 50, NULL, NULL, 1); in print_modules()
199 zend_hash_copy(&sorted_registry, &module_registry, NULL, &tmp, sizeof(zend_module_entry)); in print_modules()
200 zend_hash_sort(&sorted_registry, zend_qsort, module_name_cmp, 0 TSRMLS_CC); in print_modules()
201 zend_hash_apply(&sorted_registry, (apply_func_t) print_module_info TSRMLS_CC); in print_modules()
202 zend_hash_destroy(&sorted_registry); in print_modules()
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_main.c235 HashTable sorted_registry; in print_modules() local
238 zend_hash_init(&sorted_registry, 50, NULL, NULL, 1); in print_modules()
239 zend_hash_copy(&sorted_registry, &module_registry, NULL, &tmp, sizeof(zend_module_entry)); in print_modules()
240 zend_hash_sort(&sorted_registry, zend_qsort, module_name_cmp, 0 TSRMLS_CC); in print_modules()
241 …zend_hash_apply_with_argument(&sorted_registry, (apply_func_arg_t) print_module_info, NULL TSRMLS_… in print_modules()
242 zend_hash_destroy(&sorted_registry); in print_modules()
/PHP-5.5/sapi/cgi/
H A Dcgi_main.c235 HashTable sorted_registry; in print_modules() local
238 zend_hash_init(&sorted_registry, 50, NULL, NULL, 1); in print_modules()
239 zend_hash_copy(&sorted_registry, &module_registry, NULL, &tmp, sizeof(zend_module_entry)); in print_modules()
240 zend_hash_sort(&sorted_registry, zend_qsort, module_name_cmp, 0 TSRMLS_CC); in print_modules()
241 …zend_hash_apply_with_argument(&sorted_registry, (apply_func_arg_t) print_module_info, NULL TSRMLS_… in print_modules()
242 zend_hash_destroy(&sorted_registry); in print_modules()

Completed in 32 milliseconds