Searched refs:child_process_inherit (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/ |
H A D | PipeBase.h | 25 virtual Status CreateNew(bool child_process_inherit) = 0; 27 bool child_process_inherit) = 0; 29 bool child_process_inherit, 33 bool child_process_inherit) = 0; 35 Status OpenAsWriter(llvm::StringRef name, bool child_process_inherit); 37 OpenAsWriterWithTimeout(llvm::StringRef name, bool child_process_inherit,
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/posix/ |
H A D | PipePosix.h | 34 Status CreateNew(bool child_process_inherit) override; 35 Status CreateNew(llvm::StringRef name, bool child_process_inherit) override; 37 bool child_process_inherit, 40 bool child_process_inherit) override; 42 OpenAsWriterWithTimeout(llvm::StringRef name, bool child_process_inherit,
|
/freebsd/contrib/llvm-project/lldb/source/Host/posix/ |
H A D | PipePosix.cpp | 110 Status PipePosix::CreateNew(llvm::StringRef name, bool child_process_inherit) { in CreateNew() argument 123 bool child_process_inherit, in CreateWithUniqueName() argument 139 error = CreateNew(named_pipe_path, child_process_inherit); in CreateWithUniqueName() 148 bool child_process_inherit) { in OpenAsReader() argument 155 if (!child_process_inherit) in OpenAsReader() 170 bool child_process_inherit, in OpenAsWriterWithTimeout() argument 177 if (!child_process_inherit) in OpenAsWriterWithTimeout()
|
/freebsd/contrib/llvm-project/lldb/source/Host/common/ |
H A D | PipeBase.cpp | 16 bool child_process_inherit) { in OpenAsWriter() argument 17 return OpenAsWriterWithTimeout(name, child_process_inherit, in OpenAsWriter()
|