Home
last modified time | relevance | path

Searched refs:open3 (Results 1 – 19 of 19) sorted by relevance

/openbsd/src/gnu/usr.bin/perl/ext/IPC-Open3/t/
DIPC-Open3.t42 $pid = open3 'WRITE', 'READ', 'ERROR', $perl, '-e', cmd_line(<<'EOF');
59 $pid = open3 'WRITE', 'READ', 'READ', $perl, '-e', cmd_line(<<'EOF');
71 $pid = open3 'WRITE', 'READ', '', $perl, '-e', cmd_line(<<'EOF');
83 $pid = open3 '<&PIPE_READ', 'READ', '',
94 $pid = open3 'WRITE', '>&STDOUT', 'ERROR',
102 $pid = IPC::Open3::open3('QWACK_WAAK_WAAK', '>&STDOUT', 'ERROR',
113 $pid = open3 'WRITE', 'READ', '>&STDOUT',
123 $pid = open3 'WRITE', '>&STDOUT', $err, $perl, '-e', cmd_line(<<'EOF');
137 $pid = eval { open3 'WRITE', '>&STDOUT', 'ERROR', "$perl -e " . $cmd; };
154 $pid = eval { open3 'WRITE', 'READ', 'ERROR', '/non/existent/program'; };
[all …]
Dfd.t40 open3('<&' . fileno FOO, my \$out, undef, \$ENV{PERLEXE}, '-eprint scalar <STDIN>');
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/Iterator/
DProcess.pm153 $pid = open3(
165 eval { $pid = open3( '<&STDIN', $out, $err, @command ); };
/openbsd/src/gnu/usr.bin/perl/dist/Carp/t/
Dstack_after_err.t4 use IPC::Open3 1.0103 qw(open3);
45 my $pid = open3($w, $r, undef, $^X, $0, $i);
DCarp.t6 use IPC::Open3 1.0103 qw(open3);
15 my $pid = open3($w, $r, undef, $^X, "-e", $args{prog});
312 skip "IPC::Open3::open3 needs porting", 2 if $Is_VMS;
425 skip "IPC::Open3::open3 needs porting", 1 if $Is_VMS;
459 skip "IPC::Open3::open3 needs porting", 1 if $Is_VMS;
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/regression/
Dipc_files_abort_exit.t12 use IPC::Open3 qw/open3/;
20 my $pid = open3(undef, ">&" . fileno($stdout), ">&" . fileno($stderr), $^X, '-Ilib', '-e', <<'EOT');
/openbsd/src/gnu/usr.bin/perl/cpan/Encode/t/
Dpiconv.t15 use IPC::Open3 qw(open3);
79 my $pid = open3( $in_fh, $out_fh, $err_fh, @base_cmd, @$args )
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Harness/t/sample-tests/
Dbailout1 # Sleep makes Mac OS open3 race problem more repeatable
/openbsd/src/gnu/usr.bin/perl/cpan/IPC-Cmd/lib/IPC/
DCmd.pm534 my $pid = open3($child_in, $child_out, $child_err, $cmd);
1430 my $open3 = sub {
1439 my $pid = IPC::Open3::open3('>&TO_CHLD_R', '<&FR_CHLD_W', '<&FR_CHLD_ERR_W', @_);
1448 $open3->( ( ref $cmd ? @$cmd : $cmd ) );
1531 IPC::Open3::open3(
/openbsd/src/gnu/usr.bin/perl/ext/IPC-Open3/lib/IPC/
DOpen3.pm363 sub open3 { subroutine
/openbsd/src/gnu/usr.bin/perl/cpan/Pod-Perldoc/lib/Pod/Perldoc/
DToMan.pm312 my $pid = IPC::Open3::open3(
/openbsd/src/gnu/usr.bin/perl/dist/Carp/
DChanges126 * on VMS, skip some tests that rely on open3() which doesn't work
/openbsd/src/gnu/usr.bin/perl/cpan/perlfaq/lib/
Dperlfaq8.pod654 You can also use the C<open3()> function from L<IPC::Open3>. Benjamin
663 my $pid = open3($in, \*PH, ">&NULL", "cmd");
673 my $pid = open3($in, ">&NULL", \*PH, "cmd");
681 my $pid = open3($in, ">&STDERR", \*PH, "cmd");
694 my $pid = open3($in, ">&CATCHOUT", ">&CATCHERR", "cmd");
707 my $pid = open3($in, \*CATCHOUT, ">&CATCHERR", "cmd");
/openbsd/src/gnu/usr.bin/perl/pod/
Dperl5143delta.pod75 5.12, which broke C<IPC::Open3::open3($in, $out, $err, '-')>.
Dperlipc.pod784 L<IPC::Open2> module to catch both ends. There's also an open3() in
793 is. The open2() and open3() functions are unlikely to work anywhere
Dperl5160delta.pod1193 Fixes a bug which prevented use of C<open3> on Windows when C<*STDIN>,
1198 C<open3> with "-" for the program name works once more. This was broken in
1517 lib/find{,depth}.pl look.pl newgetopt.pl open2.pl open3.pl
Dperl5120delta.pod642 F<open3.pl>, F<open2.pl>, F<newgetopt.pl>, F<look.pl>, F<find.pl>,
Dperl5180delta.pod1330 The C<open3()> function no longer uses C<POSIX::close()> to close file
Dperl5140delta.pod1762 open3() now produces an error if the C<exec> call fails, allowing this