/external/llvm-project/lldb/include/lldb/Host/ |
D | PipeBase.h | 25 virtual Status CreateNew(bool child_process_inherit) = 0; 26 virtual Status CreateNew(llvm::StringRef name,
|
/external/llvm-project/lldb/include/lldb/Host/posix/ |
D | PipePosix.h | 35 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/ |
D | PipeWindows.h | 32 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/ |
D | PipeWindows.cpp | 68 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/ |
D | PipePosix.cpp | 86 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()
|
D | ProcessLauncherPosixFork.cpp | 187 error = pipe.CreateNew(child_processes_inherit); in LaunchProcess()
|
D | ConnectionFileDescriptorPosix.cpp | 122 Status result = m_pipe.CreateNew(m_child_processes_inherit); in OpenCommandPipe()
|
/external/llvm-project/lldb/unittests/Core/ |
D | CommunicationTest.cpp | 21 ASSERT_THAT_ERROR(pipe.CreateNew(/*child_process_inherit=*/false).ToError(), in TEST()
|
/external/webrtc/api/transport/ |
D | stun.h | 232 virtual StunMessage* CreateNew() const; 596 StunMessage* CreateNew() const override; 650 StunMessage* CreateNew() const override; 703 StunMessage* CreateNew() const override;
|
D | stun.cc | 522 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/ |
D | unit.h | 47 static ExternalFileUnit &CreateNew(int unit, const Terminator &);
|
D | unit.cpp | 75 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/ |
D | ScriptInterpreter.cpp | 162 Status pipe_result = pipe.CreateNew(false); in ScriptInterpreterIORedirect()
|
/external/libchrome/base/metrics/ |
D | persistent_sample_map.cc | 231 PersistentMemoryAllocator::Reference ref = records_->CreateNew(value); in GetOrCreateSampleCountStorage()
|
D | persistent_histogram_allocator.h | 125 PersistentMemoryAllocator::Reference CreateNew(HistogramBase::Sample value);
|
D | persistent_histogram_allocator.cc | 223 PersistentMemoryAllocator::Reference PersistentSampleMapRecords::CreateNew( in CreateNew() function in base::PersistentSampleMapRecords
|
/external/webrtc/p2p/base/ |
D | stun_request.cc | 166 std::unique_ptr<StunMessage> response(iter->second->msg_->CreateNew()); in CheckResponse()
|
/external/googletest/googlemock/test/ |
D | gmock-more-actions_test.cc | 1409 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/ |
D | GDBRemoteCommunication.cpp | 1035 error = socket_pipe.CreateNew(true); in StartDebugserverProcess()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Windows/ |
D | Path.inc | 1140 "Cannot specify both 'CreateNew' and 'Append' file creation flags!");
|
/external/llvm-project/llvm/unittests/Support/ |
D | Path.cpp | 1628 TEST_F(FileSystemTest, CreateNew) { in TEST_F() argument
|
/external/llvm-project/llvm/lib/Support/Windows/ |
D | Path.inc | 1160 "Cannot specify both 'CreateNew' and 'Append' file creation flags!");
|
/external/llvm-project/lldb/source/Target/ |
D | Process.cpp | 4444 m_pipe.CreateNew(false); in IOHandlerProcessSTDIO()
|