Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/
H A DPipeBase.h26 virtual Status CreateNew(bool child_process_inherit) = 0;
27 virtual Status CreateNew(llvm::StringRef name,
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/posix/
H A DPipePosix.h38 Status CreateNew(bool child_process_inherit) override;
39 Status CreateNew(llvm::StringRef name, bool child_process_inherit) override;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/posix/
H A DPipePosix.cpp86 Status PipePosix::CreateNew(bool child_processes_inherit) { in CreateNew() function in PipePosix
115 Status PipePosix::CreateNew(llvm::StringRef name, bool child_process_inherit) { in CreateNew() function in PipePosix
143 error = CreateNew(named_pipe_path, child_process_inherit); in CreateWithUniqueName()
H A DProcessLauncherPosixFork.cpp187 error = pipe.CreateNew(child_processes_inherit); in LaunchProcess()
H A DConnectionFileDescriptorPosix.cpp123 Status result = m_pipe.CreateNew(m_child_processes_inherit); in OpenCommandPipe()
/freebsd-12.1/contrib/googletest/googlemock/test/
H A Dgmock-generated-actions_test.cc1073 ACTION_TEMPLATE(CreateNew, in ACTION_TEMPLATE() argument
1080 const Action<int*()> a = CreateNew<int>(); in TEST()
1086 ACTION_TEMPLATE(CreateNew, in ACTION_TEMPLATE() argument
1093 const Action<int*()> a = CreateNew<int>(42); in TEST()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp1069 error = socket_pipe.CreateNew(true); in StartDebugserverProcess()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/
H A DNativeProcessDarwin.cpp896 error = m_waitpid_pipe.CreateNew(child_inherits); in StartWaitpidThread()
/freebsd-12.1/contrib/llvm/lib/Support/Windows/
H A DPath.inc1122 "Cannot specify both 'CreateNew' and 'Append' file creation flags!");
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp795 Status pipe_result = pipe.CreateNew(false); in ExecuteOneLine()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DProcess.cpp4530 m_pipe.CreateNew(false); in IOHandlerProcessSTDIO()