Home
last modified time | relevance | path

Searched refs:CreateNew (Results 1 – 13 of 13) sorted by relevance

/openbsd/gnu/llvm/lldb/include/lldb/Host/
H A DPipeBase.h25 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 DPipePosix.h35 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 DPipeWindows.h32 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 DPipeWindows.cpp66 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 DPipePosix.cpp76 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 DProcessLauncherPosixFork.cpp263 error = pipe.CreateNew(child_processes_inherit); in LaunchProcess()
H A DMainLoopPosix.cpp229 Status error = m_trigger_pipe.CreateNew(/*child_process_inherit=*/false);
H A DConnectionFileDescriptorPosix.cpp96 Status result = m_pipe.CreateNew(m_child_processes_inherit); in OpenCommandPipe()
/openbsd/gnu/llvm/lldb/source/Interpreter/
H A DScriptInterpreter.cpp189 Status pipe_result = pipe.CreateNew(false); in ScriptInterpreterIORedirect()
/openbsd/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp1015 error = socket_pipe.CreateNew(true); in StartDebugserverProcess()
/openbsd/gnu/llvm/llvm/lib/IR/
H A DInstructions.cpp519 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 DPath.inc1172 "Cannot specify both 'CreateNew' and 'Append' file creation flags!");
/openbsd/gnu/llvm/lldb/source/Target/
H A DProcess.cpp4353 m_pipe.CreateNew(false); in IOHandlerProcessSTDIO()