Lines Matching refs:arguments
463 # All arguments are parsed by Getopt
475 # --source and --target are required arguments
687 # argumentEscape(@arguments)
689 # Takes a list of @arguments and makes them shell-safe.
691 my(@arguments);
692 @arguments = @_;
694 foreach $argument (@arguments) {
718 # command(@arguments)
724 my(@arguments);
725 @arguments = @_;
726 return commandVerbosity($gVerbosity,@arguments);
729 # commandInternal($command, @arguments)
738 my(@arguments, $command);
739 ($command, @arguments) = @_;
740 return commandInternalVerbosity($gVerbosity, $command, @arguments);
743 # commandInternalVerbosity($verbosity, $command, @arguments)
749 # Removes the files specified by @arguments. Wraps unlink.
752 # Creates the symlink specified by @arguments. Wraps symlink.
754 my(@arguments, $command, $verbosity);
755 ($verbosity, $command, @arguments) = @_;
758 print(join(' ', 'rm', '-f', argumentEscape(@arguments))."\n");
761 return $#arguments+1;
763 return unlink(@arguments);
767 print(join(' ', 'ln', '-s', argumentEscape(@arguments))."\n");
773 ($source, $target) = @arguments;
778 # commandOutput(@arguments)
784 my(@arguments);
785 @arguments = @_;
786 return commandOutputVerbosity($gVerbosity, @arguments);
789 # commandOutputVerbosity($verbosity, @arguments)
808 my(@arguments, $verbosity);
809 ($verbosity, @arguments) = @_;
812 print(join(' ', argumentEscape(@arguments))."\n");
846 if(!exec {$arguments[0]} (@arguments)) {
853 # commandVerbosity($verbosity, @arguments)
859 my(@arguments, $verbosity);
860 ($verbosity, @arguments) = @_;
861 if(!defined(commandOutputVerbosity($verbosity, @arguments))) {
867 # copyFiles($tempRoot, $method, @arguments)
871 # If $method is 'copy', @arguments are interpreted as source:target, if $method
872 # is 'symlink', @arguments are interpreted as symlink:target.
1239 # hdidMountImage($mountPoint, @arguments)
1241 # Runs the hdid command with arguments specified by @arguments.
1242 # @arguments may be a single-element array containing the name of the
1258 my(@arguments, @command, $mountPoint);
1259 ($mountPoint, @arguments) = @_;
1263 @command=($gConfig{'cmd_hdiutil'}, 'attach', @arguments,
1267 @command=($gConfig{'cmd_hdid'}, @arguments);