Home
last modified time | relevance | path

Searched refs:Pipe (Results 1 – 25 of 127) sorted by relevance

123456

/openbsd-src/gnu/usr.bin/perl/dist/IO/t/
H A Dio_pipe.t33 use IO::Pipe;
45 $pipe = IO::Pipe->new()->reader($perl, '-e', 'print qq(not ok 1\n)');
53 $pipe = IO::Pipe->new()->writer($perl, '-pe', $cmd);
66 $pipe = IO::Pipe->new();
93 $pipe = IO::Pipe->new();
127 $pipe = IO::Pipe->new;
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Doptimize4.C14 struct Pipe : Writeable { struct
23 void Pipe::ewrite() in ewrite() argument
28 void ewrite(Pipe &p) in ewrite()
/openbsd-src/gnu/usr.bin/perl/dist/IO/lib/IO/
H A DPipe.pm1 # IO::Pipe.pm
7 package IO::Pipe;
20 my $class = ref($type) || $type || "IO::Pipe";
37 (IO::Pipe::End->new(), IO::Pipe::End->new());
78 croak "IO::Pipe: Cannot spawn-NOWAIT: $err" if not $pid or $pid < 0;
82 croak "IO::Pipe: Cannot exec: $!";
86 croak "IO::Pipe: Cannot fork: $!";
140 package IO::Pipe::End;
162 IO::Pipe
[all...]
/openbsd-src/gnu/llvm/compiler-rt/lib/fuzzer/
H A DFuzzerUtilPosix.cpp94 FILE *Pipe = popen(Cmd.toString().c_str(), "r"); in ExecuteCommand() local
95 if (!Pipe) in ExecuteCommand()
100 while (fgets(TmpBuffer, sizeof(TmpBuffer), Pipe)) in ExecuteCommand()
103 return pclose(Pipe) == 0; in ExecuteCommand()
H A DFuzzerUtilWindows.cpp173 FILE *Pipe = _popen(Cmd.toString().c_str(), "r"); in ExecuteCommand() local
174 if (!Pipe) in ExecuteCommand()
179 while (fgets(TmpBuffer, sizeof(TmpBuffer), Pipe)) in ExecuteCommand()
182 return _pclose(Pipe) == 0; in ExecuteCommand()
/openbsd-src/gnu/llvm/lldb/include/lldb/Host/
H A DPipe.h15 typedef PipeWindows Pipe; typedef
20 typedef PipePosix Pipe; typedef
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Legacy/subtest/
H A Dfork.t15 use IO::Pipe;
27 my $pipe = IO::Pipe->new;
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Legacy/Builder/
H A Dfork_with_new_stdout.t14 use IO::Pipe;
23 my $pipe = IO::Pipe->new;
/openbsd-src/gnu/llvm/llvm/tools/llvm-mca/
H A DPipelinePrinter.h54 PipelinePrinter(Pipeline &Pipe, const CodeRegion &R, unsigned Idx, in PipelinePrinter() argument
56 : P(Pipe), Region(R), RegionIdx(Idx), STI(STI), PO(PO) {} in PipelinePrinter()
/openbsd-src/gnu/llvm/compiler-rt/lib/fuzzer/dataflow/
H A DDataFlow.cpp91 FILE *Pipe = popen("sed 's/(+/ /g; s/).*//g' " in PrintFunctions() local
101 backtrace_symbols_fd(Buf, 1, fileno(Pipe)); in PrintFunctions()
103 pclose(Pipe); in PrintFunctions()
/openbsd-src/gnu/usr.bin/cvs/os2/
H A Dpopen.c330 pclose (FILE *Pipe) in pclose() argument
334 int Handle = fileno (Pipe); in pclose()
336 fclose (Pipe); in pclose()
/openbsd-src/gnu/llvm/llvm/lib/MCA/HardwareUnits/
H A DResourceManager.cpp359 ResourceRef Pipe = selectPipe(R.first); in issueInstruction() local
360 use(Pipe); in issueInstruction()
361 BusyResources[Pipe] += CS.size(); in issueInstruction()
363 Pipe, ResourceCycles(CS.size()))); in issueInstruction()
/openbsd-src/gnu/llvm/llvm/include/llvm/WindowsResource/
H A DResourceScriptTokenList.h30 SHORT_TOKEN(Pipe, '|') // Bitwise-OR operator.
/openbsd-src/gnu/llvm/clang/lib/Basic/
H A DDiagnostic.cpp947 const char *Pipe = ScanFormat(Argument, ArgumentEnd, '|'); in FormatDiagnostic() local
948 assert(ScanFormat(Pipe + 1, ArgumentEnd, '|') == ArgumentEnd && in FormatDiagnostic()
950 const char *FirstDollar = ScanFormat(Argument, Pipe, '$'); in FormatDiagnostic()
951 const char *SecondDollar = ScanFormat(FirstDollar + 1, Pipe, '$'); in FormatDiagnostic()
958 FormatDiagnostic(SecondDollar + 1, Pipe, OutStr); in FormatDiagnostic()
1081 const char *Pipe = ScanFormat(Argument, ArgumentEnd, '|'); in FormatDiagnostic() local
1095 FormatDiagnostic(Pipe + 1, ArgumentEnd, OutStr); in FormatDiagnostic()
1135 FormatDiagnostic(SecondDollar + 1, Pipe, OutStr); in FormatDiagnostic()
/openbsd-src/gnu/gcc/gcc/config/mips/
H A D7000.md41 ;; Integer execution unit (M-Pipe).
44 ;; Integer execution unit (F-Pipe).
49 ;; Floating-point unit (F-Pipe).
/openbsd-src/gnu/llvm/libcxx/docs/Status/
H A DRangesMajorFeatures.csv3 C++23,`Pipe support for user-defined range adaptors <https://wg21.link/P2387R3>`_,Unassigned,No pat…
/openbsd-src/gnu/llvm/lldb/tools/lldb-server/
H A Dlldb-gdbserver.cpp171 Status writeSocketIdToPipe(Pipe &port_pipe, llvm::StringRef socket_id) { in writeSocketIdToPipe()
179 Pipe port_name_pipe; in writeSocketIdToPipe()
190 Pipe port_pipe{LLDB_INVALID_PIPE, unnamed_pipe}; in writeSocketIdToPipe()
/openbsd-src/gnu/llvm/lldb/include/lldb/
H A Dmodule.modulemap42 module Pipe { header "Host/Pipe.h" export * }
/openbsd-src/gnu/llvm/lldb/include/lldb/Host/posix/
H A DMainLoopPosix.h90 Pipe m_trigger_pipe;
/openbsd-src/usr.bin/mail/misc/
H A Dmail.tildehelp22 ~|command Pipe message through command.
/openbsd-src/gnu/llvm/clang/include/clang/Driver/
H A DInputInfo.h33 Pipe enumerator
/openbsd-src/gnu/llvm/llvm/tools/llvm-rc/
H A DResourceScriptTokenList.def32 SHORT_TOKEN(Pipe, '|') // Bitwise-OR operator.
/openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/
H A DRISCVSchedSiFive7.td25 // Pipe A can handle memory, integer alu and vector operations.
26 // Pipe B can handle integer alu, control flow, integer multiply and divide,
/openbsd-src/gnu/llvm/clang/include/clang/Serialization/
H A DTypeBitCodes.def54 TYPE_BIT_CODE(Pipe, PIPE, 43)
/openbsd-src/usr.bin/file/magdir/
H A Dmail.news17 0 string Pipe\ to mail piping text

123456