Lines Matching refs:modules
494 char **modules; in PHP_MINFO_FUNCTION() local
500 modules = mcrypt_list_algorithms(MCG(algorithms_dir), &count); in PHP_MINFO_FUNCTION()
505 smart_str_appends(&tmp1, modules[i]); in PHP_MINFO_FUNCTION()
509 mcrypt_free_p(modules, count); in PHP_MINFO_FUNCTION()
511 modules = mcrypt_list_modes(MCG(modes_dir), &count); in PHP_MINFO_FUNCTION()
516 smart_str_appends(&tmp2, modules[i]); in PHP_MINFO_FUNCTION()
520 mcrypt_free_p (modules, count); in PHP_MINFO_FUNCTION()
990 char **modules; in PHP_FUNCTION() local
1001 modules = mcrypt_list_algorithms(lib_dir, &count); in PHP_FUNCTION()
1007 add_index_string(return_value, i, modules[i], 1); in PHP_FUNCTION()
1009 mcrypt_free_p(modules, count); in PHP_FUNCTION()
1017 char **modules; in PHP_FUNCTION() local
1028 modules = mcrypt_list_modes(lib_dir, &count); in PHP_FUNCTION()
1034 add_index_string(return_value, i, modules[i], 1); in PHP_FUNCTION()
1036 mcrypt_free_p(modules, count); in PHP_FUNCTION()