Home
last modified time | relevance | path

Searched refs:ARGV (Results 1 – 25 of 522) sorted by relevance

12345678910>>...21

/third_party/curl/tests/
Dhttp-server.pl65 while(@ARGV) {
66 if($ARGV[0] eq '--pidfile') {
67 if($ARGV[1]) {
68 $pidfile = $ARGV[1];
69 shift @ARGV;
72 elsif($ARGV[0] eq '--portfile') {
73 if($ARGV[1]) {
74 $portfile = $ARGV[1];
75 shift @ARGV;
78 elsif($ARGV[0] eq '--config') {
[all …]
Dhttp2-server.pl45 while(@ARGV) {
46 if($ARGV[0] eq '--verbose') {
49 elsif($ARGV[0] eq '--pidfile') {
50 if($ARGV[1]) {
51 $pidfile = $ARGV[1];
52 shift @ARGV;
55 elsif($ARGV[0] eq '--nghttpx') {
56 if($ARGV[1]) {
57 $nghttpx = $ARGV[1];
58 shift @ARGV;
[all …]
Dhttp3-server.pl45 while(@ARGV) {
46 if($ARGV[0] eq '--verbose') {
49 elsif($ARGV[0] eq '--pidfile') {
50 if($ARGV[1]) {
51 $pidfile = $ARGV[1];
52 shift @ARGV;
55 elsif($ARGV[0] eq '--nghttpx') {
56 if($ARGV[1]) {
57 $nghttpx = $ARGV[1];
58 shift @ARGV;
[all …]
Dtftpserver.pl58 while(@ARGV) {
59 if($ARGV[0] eq '--pidfile') {
60 if($ARGV[1]) {
61 $pidfile = $ARGV[1];
62 shift @ARGV;
65 elsif($ARGV[0] eq '--portfile') {
66 if($ARGV[1]) {
67 $portfile = $ARGV[1];
68 shift @ARGV;
71 elsif($ARGV[0] eq '--logfile') {
[all …]
Drtspserver.pl57 while(@ARGV) {
58 if($ARGV[0] eq '--pidfile') {
59 if($ARGV[1]) {
60 $pidfile = $ARGV[1];
61 shift @ARGV;
64 elsif($ARGV[0] eq '--portfile') {
65 if($ARGV[1]) {
66 $portfile = $ARGV[1];
67 shift @ARGV;
70 elsif($ARGV[0] eq '--logfile') {
[all …]
Dsecureserver.pl98 while(@ARGV) {
99 if($ARGV[0] eq '--verbose') {
102 elsif($ARGV[0] eq '--proto') {
103 if($ARGV[1]) {
104 $proto = $ARGV[1];
105 shift @ARGV;
108 elsif($ARGV[0] eq '--accept') {
109 if($ARGV[1]) {
110 if($ARGV[1] =~ /^(\d+)$/) {
112 shift @ARGV;
[all …]
Ddevtest.pl138 while(@ARGV) {
139 if($ARGV[0] eq "-h") {
152 elsif($ARGV[0] eq "--verbose") {
155 elsif($ARGV[0] eq "sleep") {
156 shift @ARGV;
157 sleep $ARGV[0];
159 elsif($ARGV[0] eq "echo") {
160 shift @ARGV;
161 print $ARGV[0] . "\n";
163 elsif($ARGV[0] eq "pause") {
[all …]
Dtestcurl.pl93 while ($ARGV[0]) {
94 if ($ARGV[0] =~ /--target=/) {
95 $targetos = (split(/=/, shift @ARGV, 2))[1];
97 elsif ($ARGV[0] =~ /--setup=/) {
98 $setupfile = (split(/=/, shift @ARGV, 2))[1];
100 elsif ($ARGV[0] =~ /--extvercmd=/) {
101 $extvercmd = (split(/=/, shift @ARGV, 2))[1];
103 elsif ($ARGV[0] =~ /--mktarball=/) {
104 $mktarball = (split(/=/, shift @ARGV, 2))[1];
106 elsif ($ARGV[0] =~ /--name=/) {
[all …]
Dsshserver.pl121 while(@ARGV) {
122 if($ARGV[0] eq '--verbose') {
125 elsif($ARGV[0] eq '--debugprotocol') {
129 elsif($ARGV[0] eq '--user') {
130 if($ARGV[1]) {
131 $username = $ARGV[1];
132 shift @ARGV;
135 elsif($ARGV[0] eq '--id') {
136 if($ARGV[1]) {
137 if($ARGV[1] =~ /^(\d+)$/) {
[all …]
Druntests.pl2144 if(@ARGV && $ARGV[-1] eq '$TFLAGS') {
2145 pop @ARGV;
2146 push(@ARGV, split(' ', $ENV{'TFLAGS'})) if defined($ENV{'TFLAGS'});
2153 while(@ARGV) {
2154 if ($ARGV[0] eq "-v") {
2158 elsif ($ARGV[0] eq "-c") {
2160 $DBGCURL=$CURL=$ARGV[1];
2161 shift @ARGV;
2163 elsif ($ARGV[0] eq "-vc") {
2170 $VCURL=shell_quote($ARGV[1]);
[all …]
Dftpserver.pl2988 while(@ARGV) {
2989 if($ARGV[0] eq '--verbose') {
2992 elsif($ARGV[0] eq '--srcdir') {
2993 if($ARGV[1]) {
2994 $srcdir = $ARGV[1];
2995 shift @ARGV;
2998 elsif($ARGV[0] eq '--id') {
2999 if($ARGV[1] && ($ARGV[1] =~ /^(\d+)$/)) {
3001 shift @ARGV;
3004 elsif($ARGV[0] eq '--proto') {
[all …]
/third_party/skia/third_party/externals/icu/source/tools/genren/
Dgenren.pl45 while($ARGV[0] =~ /^-/) { # detects whether there are any arguments
46 $_ = shift @ARGV; # extracts the argument for processing
49 /^-o/ && (($headername = shift (@ARGV)), next); # output file
50 /^-n/ && (($nmopts = shift (@ARGV)), next); # nm opts
51 /^-p/ && (($post = shift (@ARGV)), next); # nm opts
52 /^-x/ && (($mode = shift (@ARGV)), next); # nm opts
53 /^-S/ && (($U_ICU_VERSION_SUFFIX = shift(@ARGV)), next); # pick the suffix
58 unless(@ARGV > 0) {
137 for(;@ARGV; shift(@ARGV)) {
139 @NMRESULT = `nm $nmopts $ARGV[0] $post`;
[all …]
/third_party/icu/icu4c/source/tools/genren/
Dgenren.pl45 while($ARGV[0] =~ /^-/) { # detects whether there are any arguments
46 $_ = shift @ARGV; # extracts the argument for processing
49 /^-o/ && (($headername = shift (@ARGV)), next); # output file
50 /^-n/ && (($nmopts = shift (@ARGV)), next); # nm opts
51 /^-p/ && (($post = shift (@ARGV)), next); # nm opts
52 /^-x/ && (($mode = shift (@ARGV)), next); # nm opts
53 /^-S/ && (($U_ICU_VERSION_SUFFIX = shift(@ARGV)), next); # pick the suffix
58 unless(@ARGV > 0) {
137 for(;@ARGV; shift(@ARGV)) {
139 @NMRESULT = `nm $nmopts $ARGV[0] $post`;
[all …]
/third_party/openssl/util/
Dwrite-man-symlinks19 if ($#ARGV + 1 != 5 || $ARGV[0] !~ /^(un)?install$/) {
24 my $action = $ARGV[0];
25 my $srcdir = $ARGV[1];
26 my $builddir = $ARGV[2];
27 my $manname = $ARGV[3];
28 my $targetdir = $ARGV[4];
Dck_errf.pl48 while ( @ARGV ) {
49 my $arg = $ARGV[0];
53 $config = $ARGV[1];
54 shift @ARGV;
67 shift @ARGV;
72 die "Extra parameters given.\n" if @ARGV;
80 @source = @ARGV;
/third_party/node/deps/openssl/openssl/util/
Dwrite-man-symlinks19 if ($#ARGV + 1 != 5 || $ARGV[0] !~ /^(un)?install$/) {
24 my $action = $ARGV[0];
25 my $srcdir = $ARGV[1];
26 my $builddir = $ARGV[2];
27 my $manname = $ARGV[3];
28 my $targetdir = $ARGV[4];
Dck_errf.pl48 while ( @ARGV ) {
49 my $arg = $ARGV[0];
53 $config = $ARGV[1];
54 shift @ARGV;
67 shift @ARGV;
72 die "Extra parameters given.\n" if @ARGV;
80 @source = @ARGV;
/third_party/openssl/ms/
Dcmp.pl9 ($#ARGV == 1) || die "usage: cmp.pl <file1> <file2>\n";
11 open(IN0,"<$ARGV[0]") || die "unable to open $ARGV[0]\n";
12 open(IN1,"<$ARGV[1]") || die "unable to open $ARGV[1]\n";
38 printf STDERR "$ARGV[0] and $ARGV[1] are different\n";
/third_party/node/deps/openssl/openssl/ms/
Dcmp.pl9 ($#ARGV == 1) || die "usage: cmp.pl <file1> <file2>\n";
11 open(IN0,"<$ARGV[0]") || die "unable to open $ARGV[0]\n";
12 open(IN1,"<$ARGV[1]") || die "unable to open $ARGV[1]\n";
38 printf STDERR "$ARGV[0] and $ARGV[1] are different\n";
/third_party/curl/tests/libtest/
Dtest613.pl28 if ( $#ARGV < 1 )
40 if ($ARGV[0] eq "prepare")
42 my $dirname = $ARGV[1];
72 elsif ($ARGV[0] eq "postprocess")
74 my $dirname = $ARGV[1];
75 my $logfile = $ARGV[2];
145 print "Unsupported command $ARGV[0]\n";
Dtest610.pl26 if ( $#ARGV <= 0 )
33 while(@ARGV) {
34 my $cmd = shift @ARGV;
35 my $arg = shift @ARGV;
46 my $arg2 = shift @ARGV;
/third_party/skia/tools/skpbench/
Dskpbench.py139 ARGV = [FLAGS.skpbench, '--verbosity', str(FLAGS.verbosity)] variable in SKPBench
141 ARGV.extend(['--duration', str(FLAGS.duration)])
143 ARGV.extend(['--sampleMs', str(FLAGS.sample_ms)])
145 ARGV.extend(['--gpuClock', 'true'])
147 ARGV.extend(['--fps', 'true'])
149 ARGV.extend(['--pr'] + re.split(r'[ ,]', FLAGS.pr))
151 ARGV.extend(['--cc', 'true'])
153 ARGV.extend(['--cachePathMasks', 'false'])
155 ARGV.extend(['--allPathsVolatile', 'true'])
157 ARGV.extend(['--gpuThreads', str(FLAGS.gpuThreads)])
[all …]
/third_party/openssl/crypto/objects/
Dobjects.pl18 my $YEAR = OpenSSL::copyright::latest(($0, $ARGV[1], $ARGV[0]));
20 open (NUMIN,"$ARGV[1]") || die "Can't open number file $ARGV[1]";
33 { die "$ARGV[1]:$o:There's already an object with NID ",$mynum," on line ",$order{$mynum},"\n"; }
35 …{ die "$ARGV[1]:$o:There's already an object with name ",$Cname," on line ",$order{$nid{$Cname}},"…
43 open (IN,"$ARGV[0]") || die "Can't open input file $ARGV[0]";
196 { die "$ARGV[0]:$o:Undefined identifier ",$a[0],"\n"; }
/third_party/node/deps/openssl/openssl/crypto/objects/
Dobjects.pl18 my $YEAR = OpenSSL::copyright::latest(($0, $ARGV[1], $ARGV[0]));
20 open (NUMIN,"$ARGV[1]") || die "Can't open number file $ARGV[1]";
33 { die "$ARGV[1]:$o:There's already an object with NID ",$mynum," on line ",$order{$mynum},"\n"; }
35 …{ die "$ARGV[1]:$o:There's already an object with name ",$Cname," on line ",$order{$nid{$Cname}},"…
43 open (IN,"$ARGV[0]") || die "Can't open input file $ARGV[0]";
196 { die "$ARGV[0]:$o:Undefined identifier ",$a[0],"\n"; }
/third_party/mbedtls/tests/data_files/
Dprint_c.pl21 if (!@ARGV || $ARGV[0] == '--help') {
33 my $pp_name = @ARGV > 1 ? shift @ARGV : undef;
34 my $name = shift @ARGV;

12345678910>>...21