| /llvm-project-15.0.7/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()
|
| /llvm-project-15.0.7/lldb/include/lldb/Host/ |
| H A D | Pipe.h | 15 typedef PipeWindows Pipe; typedef 20 typedef PipePosix Pipe; typedef
|
| /llvm-project-15.0.7/lldb/unittests/Host/ |
| H A D | PipeTest.cpp | 23 Pipe pipe; in TEST_F() 35 Pipe pipe; in TEST_F()
|
| /llvm-project-15.0.7/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()
|
| /llvm-project-15.0.7/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()
|
| /llvm-project-15.0.7/lldb/unittests/Core/ |
| H A D | CommunicationTest.cpp | 27 Pipe pipe; in TEST() 48 Pipe pipe; in TEST()
|
| /llvm-project-15.0.7/lldb/test/API/tools/lldb-server/commandline/ |
| H A D | TestGdbRemoteConnection.py | 64 class Pipe(object): class 108 class Pipe(object): class 145 pipe = Pipe(self.getBuildDir())
|
| /llvm-project-15.0.7/llvm/lib/MCA/HardwareUnits/ |
| H A D | ResourceManager.cpp | 318 ResourceRef Pipe = selectPipe(R.first); in issueInstruction() local 319 use(Pipe); in issueInstruction() 320 BusyResources[Pipe] += CS.size(); in issueInstruction() 322 Pipe, ResourceCycles(CS.size()))); in issueInstruction()
|
| /llvm-project-15.0.7/llvm/include/llvm/WindowsResource/ |
| H A D | ResourceScriptTokenList.h | 30 SHORT_TOKEN(Pipe, '|') // Bitwise-OR operator.
|
| /llvm-project-15.0.7/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()
|
| /llvm-project-15.0.7/lldb/tools/lldb-server/ |
| H A D | lldb-gdbserver.cpp | 167 Status writeSocketIdToPipe(Pipe &port_pipe, llvm::StringRef socket_id) { in writeSocketIdToPipe() 175 Pipe port_name_pipe; in writeSocketIdToPipe() 186 Pipe port_pipe{LLDB_INVALID_PIPE, unnamed_pipe}; in writeSocketIdToPipe()
|
| /llvm-project-15.0.7/lldb/include/lldb/ |
| H A D | module.modulemap | 42 module Pipe { header "Host/Pipe.h" export * }
|
| /llvm-project-15.0.7/clang/include/clang/Driver/ |
| H A D | InputInfo.h | 33 Pipe enumerator
|
| /llvm-project-15.0.7/llvm/tools/llvm-rc/ |
| H A D | ResourceScriptTokenList.def | 32 SHORT_TOKEN(Pipe, '|') // Bitwise-OR operator.
|
| H A D | ResourceScriptToken.cpp | 71 case Kind::Pipe: in isBinaryOp()
|
| /llvm-project-15.0.7/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,
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-rc/ |
| H A D | tokenizer.test | 14 ; CHECK-NEXT: Pipe: |
|
| /llvm-project-15.0.7/clang/include/clang/Serialization/ |
| H A D | TypeBitCodes.def | 54 TYPE_BIT_CODE(Pipe, PIPE, 43)
|
| /llvm-project-15.0.7/lldb/include/lldb/Host/posix/ |
| H A D | ConnectionFileDescriptorPosix.h | 133 Pipe m_pipe;
|
| /llvm-project-15.0.7/llvm/include/llvm/MC/ |
| H A D | MCAsmMacro.h | 51 Pipe, PipePipe, Caret, enumerator
|
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | Specifiers.h | 49 enum class TypeSpecifiersPipe { Unspecified, Pipe }; enumerator
|
| /llvm-project-15.0.7/llvm/lib/MC/MCParser/ |
| H A D | MCAsmLexer.cpp | 88 case AsmToken::Pipe: OS << "Pipe"; break; in dump()
|
| /llvm-project-15.0.7/clang/test/Index/ |
| H A D | opencl-types.cl | 109 …rmDecl=scalarPipe:106:46 (Definition) [type=__private read_only pipe int] [typekind=Pipe] [isPOD=0] 110 …mDecl=scalarPipe:107:47 (Definition) [type=__private write_only pipe int] [typekind=Pipe] [isPOD=0]
|
| /llvm-project-15.0.7/lldb/source/Interpreter/ |
| H A D | ScriptInterpreter.cpp | 185 Pipe pipe; in ScriptInterpreterIORedirect()
|