Lines Matching refs:ShellEscape
750 if (!system(ShellEscape(@GV, "--version") . " >$dev_null 2>&1")) {
756 system(ShellEscape(@GV, "--scale=$main::opt_scale", "--noantialias", $fname)
760 print STDERR ShellEscape(@GV, "-scale", $main::opt_scale) . "\n";
761 system(ShellEscape(@GV, "-scale", "$main::opt_scale", $fname) . $bg);
768 system(ShellEscape(@EVINCE, $fname) . $bg);
803 system(ShellEscape(@KCACHEGRIND, $fname) . $bg);
1351 my $cmd = ShellEscape($objdump, "-C", "-d", "-l", "--no-show-raw-insn",
2059 my $escaped_dot = ShellEscape(@DOT);
2060 my $escaped_ps2pdf = ShellEscape(@PS2PDF);
2062 my $escaped_outfile = ShellEscape(TempName($main::next_tmpfile, "ps"));
2065 my $escaped_outfile = ShellEscape(TempName($main::next_tmpfile, "pdf"));
2073 my $escaped_outfile = ShellEscape(TempName($main::next_tmpfile, "svg"));
3252 my $command = ShellEscape(@URL_FETCHER, $url);
3310 my $command_line = ShellEscape(@URL_FETCHER, $url);
3327 my $command_line = ShellEscape(@URL_FETCHER, "--head", $url);
3434 $command_line = ShellEscape(@URL_FETCHER, "-d", "\@$main::tmpfile_sym",
3438 $command_line = (ShellEscape(@URL_FETCHER, "--post", $url)
3439 . " < " . ShellEscape($main::tmpfile_sym));
3442 my $escaped_cppfilt = ShellEscape($obj_tool_map{"c++filt"});
3549 my $cmd = ShellEscape(@fetcher, $url) . " > " . ShellEscape($tmp_profile);
4458 my $cmd = ShellEscape($obj_tool_map{"objdump"}, "-h", $lib);
4497 my $command = ShellEscape($obj_tool_map{"otool"}, "-l", $lib);
4893 my $cmd = ShellEscape($addr2line, "-f", "-C", "-e", $image);
4896 $cmd = ShellEscape($addr2line, "--demangle", "-f", "-C", "-e", $image);
4901 if (system(ShellEscape($addr2line, "--help") . " >$dev_null 2>&1") != 0) {
4942 system("$cmd < " . ShellEscape($main::tmpfile_sym));
4946 open(SYMBOLS, "$cmd <" . ShellEscape($main::tmpfile_sym) . " |")
5107 my $escaped_prog_file = ShellEscape($prog_file);
5191 sub ShellEscape {
5356 if (system(ShellEscape($nm, "--demangle", "image") . $to_devnull) == 0) {
5360 } elsif (system(ShellEscape($cppfilt, $image) . $to_devnull) == 0) {
5362 $cppfilt_flag = " | " . ShellEscape($cppfilt);
5365 if (system(ShellEscape($nm, "-f", $image) . $to_devnull) == 0) {
5372 my @nm_commands = (ShellEscape($nm, "-n", $flatten_flag, $demangle_flag,
5374 ShellEscape($nm, "-D", "-n", $flatten_flag, $demangle_flag,
5377 ShellEscape("6nm", "$image") . " 2>$dev_null | sort",
5386 ShellEscape($obj_tool_map{"nm_pdb"}, "--demangle", $image)