Home
last modified time | relevance | path

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

/external/llvm-project/lldb/include/lldb/Host/
DPipeBase.h25 virtual Status CreateNew(bool child_process_inherit) = 0;
26 virtual Status CreateNew(llvm::StringRef name,
/external/llvm-project/lldb/include/lldb/Host/posix/
DPipePosix.h35 Status CreateNew(bool child_process_inherit) override;
36 Status CreateNew(llvm::StringRef name, bool child_process_inherit) override;
/external/llvm-project/lldb/include/lldb/Host/windows/
DPipeWindows.h32 Status CreateNew(bool child_process_inherit) override;
36 Status CreateNew(llvm::StringRef name, bool child_process_inherit) override;
/external/llvm-project/lldb/source/Host/windows/
DPipeWindows.cpp68 Status PipeWindows::CreateNew(bool child_process_inherit) { in CreateNew() function in PipeWindows
96 return CreateNew(pipe_name.c_str(), child_process_inherit); in CreateNewNamed()
99 Status PipeWindows::CreateNew(llvm::StringRef name, in CreateNew() function in PipeWindows
148 error = CreateNew(pipe_name, child_process_inherit); in CreateWithUniqueName()
/external/llvm-project/lldb/source/Host/posix/
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()
DProcessLauncherPosixFork.cpp187 error = pipe.CreateNew(child_processes_inherit); in LaunchProcess()
DConnectionFileDescriptorPosix.cpp122 Status result = m_pipe.CreateNew(m_child_processes_inherit); in OpenCommandPipe()
/external/llvm-project/lldb/unittests/Core/
DCommunicationTest.cpp21 ASSERT_THAT_ERROR(pipe.CreateNew(/*child_process_inherit=*/false).ToError(), in TEST()
/external/webrtc/api/transport/
Dstun.h232 virtual StunMessage* CreateNew() const;
596 StunMessage* CreateNew() const override;
650 StunMessage* CreateNew() const override;
703 StunMessage* CreateNew() const override;
Dstun.cc522 StunMessage* StunMessage::CreateNew() const { in CreateNew() function in cricket::StunMessage
1276 StunMessage* RelayMessage::CreateNew() const { in CreateNew() function in cricket::RelayMessage
1305 StunMessage* TurnMessage::CreateNew() const { in CreateNew() function in cricket::TurnMessage
1326 StunMessage* IceMessage::CreateNew() const { in CreateNew() function in cricket::IceMessage
1331 std::unique_ptr<StunMessage> copy(CreateNew()); in Clone()
/external/llvm-project/flang/runtime/
Dunit.h47 static ExternalFileUnit &CreateNew(int unit, const Terminator &);
Dunit.cpp75 ExternalFileUnit &ExternalFileUnit::CreateNew( in CreateNew() function in Fortran::runtime::io::ExternalFileUnit
204 ExternalFileUnit &out{ExternalFileUnit::CreateNew(6, terminator)}; in GetUnitMap()
208 ExternalFileUnit &in{ExternalFileUnit::CreateNew(5, terminator)}; in GetUnitMap()
/external/llvm-project/lldb/source/Interpreter/
DScriptInterpreter.cpp162 Status pipe_result = pipe.CreateNew(false); in ScriptInterpreterIORedirect()
/external/libchrome/base/metrics/
Dpersistent_sample_map.cc231 PersistentMemoryAllocator::Reference ref = records_->CreateNew(value); in GetOrCreateSampleCountStorage()
Dpersistent_histogram_allocator.h125 PersistentMemoryAllocator::Reference CreateNew(HistogramBase::Sample value);
Dpersistent_histogram_allocator.cc223 PersistentMemoryAllocator::Reference PersistentSampleMapRecords::CreateNew( in CreateNew() function in base::PersistentSampleMapRecords
/external/webrtc/p2p/base/
Dstun_request.cc166 std::unique_ptr<StunMessage> response(iter->second->msg_->CreateNew()); in CheckResponse()
/external/googletest/googlemock/test/
Dgmock-more-actions_test.cc1409 ACTION_TEMPLATE(CreateNew, HAS_1_TEMPLATE_PARAMS(typename, T), in ACTION_TEMPLATE() argument
1415 const Action<int*()> a = CreateNew<int>(); in TEST()
1421 ACTION_TEMPLATE(CreateNew, HAS_1_TEMPLATE_PARAMS(typename, T), in ACTION_TEMPLATE() argument
1427 const Action<int*()> a = CreateNew<int>(42); in TEST()
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunication.cpp1035 error = socket_pipe.CreateNew(true); in StartDebugserverProcess()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Windows/
DPath.inc1140 "Cannot specify both 'CreateNew' and 'Append' file creation flags!");
/external/llvm-project/llvm/unittests/Support/
DPath.cpp1628 TEST_F(FileSystemTest, CreateNew) { in TEST_F() argument
/external/llvm-project/llvm/lib/Support/Windows/
DPath.inc1160 "Cannot specify both 'CreateNew' and 'Append' file creation flags!");
/external/llvm-project/lldb/source/Target/
DProcess.cpp4444 m_pipe.CreateNew(false); in IOHandlerProcessSTDIO()