| /openbsd-src/gnu/usr.bin/perl/dist/IO/t/ |
| H A D | io_pipe.t | 33 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 D | optimize4.C | 14 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 D | Pipe.pm | 1 # 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 D | FuzzerUtilPosix.cpp | 94 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 D | FuzzerUtilWindows.cpp | 173 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 D | Pipe.h | 15 typedef PipeWindows Pipe; typedef 20 typedef PipePosix Pipe; typedef
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Legacy/subtest/ |
| H A D | fork.t | 15 use IO::Pipe; 27 my $pipe = IO::Pipe->new;
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Legacy/Builder/ |
| H A D | fork_with_new_stdout.t | 14 use IO::Pipe; 23 my $pipe = IO::Pipe->new;
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-mca/ |
| H A D | PipelinePrinter.h | 54 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 D | DataFlow.cpp | 91 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 D | popen.c | 330 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 D | ResourceManager.cpp | 359 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 D | ResourceScriptTokenList.h | 30 SHORT_TOKEN(Pipe, '|') // Bitwise-OR operator.
|
| /openbsd-src/gnu/llvm/clang/lib/Basic/ |
| H A D | Diagnostic.cpp | 947 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 D | 7000.md | 41 ;; 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 D | RangesMajorFeatures.csv | 3 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 D | lldb-gdbserver.cpp | 171 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 D | module.modulemap | 42 module Pipe { header "Host/Pipe.h" export * }
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Host/posix/ |
| H A D | MainLoopPosix.h | 90 Pipe m_trigger_pipe;
|
| /openbsd-src/usr.bin/mail/misc/ |
| H A D | mail.tildehelp | 22 ~|command Pipe message through command.
|
| /openbsd-src/gnu/llvm/clang/include/clang/Driver/ |
| H A D | InputInfo.h | 33 Pipe enumerator
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-rc/ |
| H A D | ResourceScriptTokenList.def | 32 SHORT_TOKEN(Pipe, '|') // Bitwise-OR operator.
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/ |
| H A D | RISCVSchedSiFive7.td | 25 // 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 D | TypeBitCodes.def | 54 TYPE_BIT_CODE(Pipe, PIPE, 43)
|
| /openbsd-src/usr.bin/file/magdir/ |
| H A D | mail.news | 17 0 string Pipe\ to mail piping text
|