Home | History | Annotate | Download | only in mac

Lines Matching refs:verbosity

64 [B<--verbosity> I<level>]
190 =item B<--verbosity> I<level>
379 # --verbosity
458 'verbosity=i' => \$gVerbosity,
720 # Runs the specified command at the verbosity level defined by $gVerbosity.
731 # Runs the specified internal command at the verbosity level defined by
743 # commandInternalVerbosity($verbosity, $command, @arguments)
746 # $verbosity is true.
754 my(@arguments, $command, $verbosity);
755 ($verbosity, $command, @arguments) = @_;
757 if($verbosity || $gDryRun) {
766 if($verbosity || $gDryRun) {
780 # Runs the specified command at the verbosity level defined by $gVerbosity.
789 # commandOutputVerbosity($verbosity, @arguments)
791 # Runs the specified command at the verbosity level defined by the
792 # $verbosity argument. Output is returned in an array of lines. undef is
798 # If $verbosity is 0, the command invocation is not printed, and its
801 # If $verbosity is 1, the command invocation is printed.
803 # If $verbosity is 2, the command invocation is printed and the output
806 # Regardless of $verbosity, stderr is left connected.
808 my(@arguments, $verbosity);
809 ($verbosity, @arguments) = @_;
811 if($verbosity || $gDryRun) {
827 if($verbosity > 1) {
853 # commandVerbosity($verbosity, @arguments)
855 # Runs the specified command at the verbosity level defined by the
856 # $verbosity argument. Returns nonzero on failure, returning the exit
859 my(@arguments, $verbosity);
860 ($verbosity, @arguments) = @_;
861 if(!defined(commandOutputVerbosity($verbosity, @arguments))) {
1520 " [--verbosity <level>] (0, 1, 2; default=2)\n".