sorted_exts       276 sapi/cgi/cgi_main.c 	zend_llist sorted_exts;
sorted_exts       278 sapi/cgi/cgi_main.c 	zend_llist_copy(&sorted_exts, &zend_extensions);
sorted_exts       279 sapi/cgi/cgi_main.c 	sorted_exts.dtor = NULL;
sorted_exts       280 sapi/cgi/cgi_main.c 	zend_llist_sort(&sorted_exts, extension_name_cmp);
sorted_exts       281 sapi/cgi/cgi_main.c 	zend_llist_apply_with_argument(&sorted_exts, (llist_apply_with_arg_func_t) print_extension_info, NULL);
sorted_exts       282 sapi/cgi/cgi_main.c 	zend_llist_destroy(&sorted_exts);
sorted_exts       228 sapi/cli/php_cli.c 	zend_llist sorted_exts;
sorted_exts       230 sapi/cli/php_cli.c 	zend_llist_copy(&sorted_exts, &zend_extensions);
sorted_exts       231 sapi/cli/php_cli.c 	sorted_exts.dtor = NULL;
sorted_exts       232 sapi/cli/php_cli.c 	zend_llist_sort(&sorted_exts, extension_name_cmp);
sorted_exts       233 sapi/cli/php_cli.c 	zend_llist_apply(&sorted_exts, (llist_apply_func_t) print_extension_info);
sorted_exts       234 sapi/cli/php_cli.c 	zend_llist_destroy(&sorted_exts);
sorted_exts       268 sapi/fpm/fpm/fpm_main.c 	zend_llist sorted_exts;
sorted_exts       270 sapi/fpm/fpm/fpm_main.c 	zend_llist_copy(&sorted_exts, &zend_extensions);
sorted_exts       271 sapi/fpm/fpm/fpm_main.c 	sorted_exts.dtor = NULL;
sorted_exts       272 sapi/fpm/fpm/fpm_main.c 	zend_llist_sort(&sorted_exts, extension_name_cmp);
sorted_exts       273 sapi/fpm/fpm/fpm_main.c 	zend_llist_apply_with_argument(&sorted_exts, (llist_apply_with_arg_func_t) print_extension_info, NULL);
sorted_exts       274 sapi/fpm/fpm/fpm_main.c 	zend_llist_destroy(&sorted_exts);