Lines Matching refs:cmd
120 foreach my $cmd ( @ARGV ) {
122 " {FT_general, \"$cmd\", ${cmd}_main, ${cmd}_options, NULL, NULL},\n";
123 if ($cmd =~ /^s_/) {
125 } elsif (my $deprecated = $cmd_deprecated{$cmd}) {
138 } elsif (grep { $cmd eq $_ } @disablables) {
139 print "#ifndef OPENSSL_NO_" . uc($cmd) . "\n${str}#endif\n";
140 } elsif (my $disabler = $cmd_disabler{$cmd}) {
151 foreach my $cmd (
160 my $str = " {FT_md, \"$cmd\", dgst_main, NULL, NULL},\n";
161 if (grep { $cmd eq $_ } @disablables) {
162 print "#ifndef OPENSSL_NO_" . uc($cmd) . "\n${str}#endif\n";
163 } elsif (my $disabler = $md_disabler{$cmd}) {
175 foreach my $cmd (
206 my $str = " {FT_cipher, \"$cmd\", enc_main, enc_options, NULL},\n";
207 (my $algo = $cmd) =~ s/-.*//g;