Lines Matching refs:dumpvar
324 =item * C<dump> - use C<dumpvar.pl> to display the value returned
332 Controls how far down C<dumpvar.pl> will go before printing '...' while
780 # + Fixed to call dumpvar from exception handler. SIGPIPE killed us.
944 # These variables control the execution of 'dumpvar.pl'.
945 $dumpvar::hashDepth,
946 $dumpvar::arrayDepth,
947 $dumpvar::dumpDBFiles,
948 $dumpvar::dumpPackages,
949 $dumpvar::quoteHighBit,
950 $dumpvar::printUndef,
951 $dumpvar::globPrint,
952 $dumpvar::usageOnly,
990 C<dumpvar.pl>; some of these are variables to be set, while others are
1024 hashDepth => \$dumpvar::hashDepth,
1025 arrayDepth => \$dumpvar::arrayDepth,
1027 DumpDBFiles => \$dumpvar::dumpDBFiles,
1028 DumpPackages => \$dumpvar::dumpPackages,
1029 DumpReused => \$dumpvar::dumpReused,
1030 HighBit => \$dumpvar::quoteHighBit,
1031 undefPrint => \$dumpvar::printUndef,
1032 globPrint => \$dumpvar::globPrint,
1033 UsageOnly => \$dumpvar::usageOnly,
1035 bareStringify => \$dumpvar::bareStringify,
1053 compactDump => \&dumpvar::compactDump,
1054 veryCompact => \&dumpvar::veryCompact,
1055 quote => \&dumpvar::quote,
1080 # actually require that dumpvar.pl be loaded for them to work, but are
1085 compactDump => 'dumpvar.pl',
1086 veryCompact => 'dumpvar.pl',
1087 quote => 'dumpvar.pl',
2199 Uses C<dumpvar.pl> to dump out the current values for selected variables.
2213 # force output to debugger's filehandle (dumpvar
2221 # If main::dumpvar isn't here, get it.
2222 do 'dumpvar.pl' unless defined &main::dumpvar;
2223 if (defined &main::dumpvar) {
2232 &main::dumpvar(
2244 die unless $@ =~ /dumpvar print failed/;
2246 } ## end if (defined &main::dumpvar)
2248 # Couldn't load dumpvar.
2249 print $OUT "dumpvar.pl not available.\n";
2259 via C<dumpvar.pl> instead of just printing it directly.
2264 $onetimeDump = 'dump'; # main::dumpvar shows the output
2402 above the current one and then displays then using C<dumpvar.pl>.
2417 # Load up dumpvar if we don't have it. If we can, that is.
2418 do 'dumpvar.pl' unless defined &main::dumpvar;
2419 defined &main::dumpvar
2420 or print $OUT "dumpvar.pl not available.\n"
2436 dumpvar::dumplex(
5264 C<dumpit> is the debugger's wrapper around dumpvar.pl.
5266 It gets a filehandle (to which C<dumpvar.pl>'s output will be directed) and
5269 The incoming filehandle is selected for output (C<dumpvar.pl> is printing to
5273 to single-step through C<dumpvar.pl> (I think.)). C<$frame> is localized to
5278 C<dumpit()> then checks to see if it needs to load C<dumpvar.pl> and
5279 tries to load it (note: if you have a C<dumpvar.pl> ahead of the
5284 (it should have been defined by C<dumpvar.pl>). If it has, C<dumpit()>
5290 C<dumpvar.pl>. This tells C<dumpvar.pl> where to leave off when dumping a
5315 # Load dumpvar.pl unless we've already got the sub we need from it.
5317 do 'dumpvar.pl';
5332 # Oops, couldn't load dumpvar.pl.
5335 print $OUT "dumpvar.pl not available.\n";