Home | History | Annotate | Download | only in Scripts

Lines Matching refs:cygpath

1863     my $pid = open2(\*CYGPATHIN, \*CYGPATHOUT, "cygpath -f - $options");
1864 my $cygpath = {
1871 $cygpaths{$options} = $cygpath;
1873 return $cygpath;
1880 foreach my $cygpath (values(%cygpaths)) {
1881 close $cygpath->{"in"};
1882 close $cygpath->{"out"};
1883 waitpid($cygpath->{"pid"}, 0);
1884 $cygpath->{"open"} = 0;
1893 # cygpath -f (at least in Cygwin 1.7) converts spaces into newlines. We remove spaces here and
1898 my $cygpath = openCygpathIfNeeded($options);
1899 local *inFH = $cygpath->{"in"};
1900 local *outFH = $cygpath->{"out"};