Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DPipeBase.h25 virtual Status CreateNew(bool child_process_inherit) = 0;
26 virtual Status CreateNew(llvm::StringRef name,
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/posix/
H A DPipePosix.h34 Status CreateNew(bool child_process_inherit) override;
35 Status CreateNew(llvm::StringRef name, bool child_process_inherit) override;
/freebsd/contrib/llvm-project/lldb/source/Host/posix/
H A DPipePosix.cpp80 Status PipePosix::CreateNew(bool child_processes_inherit) { in CreateNew() function in PipePosix
110 Status PipePosix::CreateNew(llvm::StringRef name, bool child_process_inherit) { in CreateNew() function in PipePosix
139 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.cpp97 Status result = m_pipe.CreateNew(m_child_processes_inherit); in OpenCommandPipe()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DScriptInterpreter.cpp217 Status pipe_result = pipe.CreateNew(false); in ScriptInterpreterIORedirect()
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-more-actions_test.cc1447 ACTION_TEMPLATE(CreateNew, HAS_1_TEMPLATE_PARAMS(typename, T), in ACTION_TEMPLATE() argument
1453 const Action<int*()> a = CreateNew<int>(); in TEST()
1459 ACTION_TEMPLATE(CreateNew, HAS_1_TEMPLATE_PARAMS(typename, T), in ACTION_TEMPLATE() argument
1465 const Action<int*()> a = CreateNew<int>(42); in TEST()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp1013 error = socket_pipe.CreateNew(true); in StartDebugserverProcess()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp574 bool CreateNew = false; in removeOperandBundle() local
579 CreateNew = true; in removeOperandBundle()
585 return CreateNew ? Create(CB, Bundles, InsertPt) : CB; in removeOperandBundle()
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc1220 "Cannot specify both 'CreateNew' and 'Append' file creation flags!");
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp4596 m_pipe.CreateNew(false); in IOHandlerProcessSTDIO()