Searched refs:CreateNew (Results 1 – 13 of 13) sorted by relevance
/openbsd/gnu/llvm/lldb/include/lldb/Host/ |
H A D | PipeBase.h | 25 virtual Status CreateNew(bool child_process_inherit) = 0; 26 virtual Status CreateNew(llvm::StringRef name,
|
/openbsd/gnu/llvm/lldb/include/lldb/Host/posix/ |
H A D | PipePosix.h | 35 Status CreateNew(bool child_process_inherit) override; 36 Status CreateNew(llvm::StringRef name, bool child_process_inherit) override;
|
/openbsd/gnu/llvm/lldb/include/lldb/Host/windows/ |
H A D | PipeWindows.h | 32 Status CreateNew(bool child_process_inherit) override; 36 Status CreateNew(llvm::StringRef name, bool child_process_inherit) override;
|
/openbsd/gnu/llvm/lldb/source/Host/windows/ |
H A D | PipeWindows.cpp | 66 Status PipeWindows::CreateNew(bool child_process_inherit) { in CreateNew() function in PipeWindows 94 return CreateNew(pipe_name.c_str(), child_process_inherit); in CreateNewNamed() 97 Status PipeWindows::CreateNew(llvm::StringRef name, in CreateNew() function in PipeWindows 146 error = CreateNew(pipe_name, child_process_inherit); in CreateWithUniqueName()
|
/openbsd/gnu/llvm/lldb/source/Host/posix/ |
H A D | PipePosix.cpp | 76 Status PipePosix::CreateNew(bool child_processes_inherit) { in CreateNew() function in PipePosix 105 Status PipePosix::CreateNew(llvm::StringRef name, bool child_process_inherit) { in CreateNew() function in PipePosix 133 error = CreateNew(named_pipe_path, child_process_inherit); in CreateWithUniqueName()
|
H A D | ProcessLauncherPosixFork.cpp | 263 error = pipe.CreateNew(child_processes_inherit); in LaunchProcess()
|
H A D | MainLoopPosix.cpp | 229 Status error = m_trigger_pipe.CreateNew(/*child_process_inherit=*/false);
|
H A D | ConnectionFileDescriptorPosix.cpp | 96 Status result = m_pipe.CreateNew(m_child_processes_inherit); in OpenCommandPipe()
|
/openbsd/gnu/llvm/lldb/source/Interpreter/ |
H A D | ScriptInterpreter.cpp | 189 Status pipe_result = pipe.CreateNew(false); in ScriptInterpreterIORedirect()
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/ |
H A D | GDBRemoteCommunication.cpp | 1015 error = socket_pipe.CreateNew(true); in StartDebugserverProcess()
|
/openbsd/gnu/llvm/llvm/lib/IR/ |
H A D | Instructions.cpp | 519 bool CreateNew = false; in removeOperandBundle() local 524 CreateNew = true; in removeOperandBundle() 530 return CreateNew ? Create(CB, Bundles, InsertPt) : CB; in removeOperandBundle()
|
/openbsd/gnu/llvm/llvm/lib/Support/Windows/ |
H A D | Path.inc | 1172 "Cannot specify both 'CreateNew' and 'Append' file creation flags!");
|
/openbsd/gnu/llvm/lldb/source/Target/ |
H A D | Process.cpp | 4353 m_pipe.CreateNew(false); in IOHandlerProcessSTDIO()
|