| /freebsd/contrib/llvm-project/lldb/include/lldb/Host/ |
| H A D | StreamFile.h | 25 class StreamFile : public Stream { 27 StreamFile(uint32_t flags, uint32_t addr_size, lldb::ByteOrder byte_order); 29 StreamFile(int fd, bool transfer_ownership); 31 StreamFile(const char *path, File::OpenOptions options, 34 StreamFile(FILE *fh, bool transfer_ownership); 36 StreamFile(std::shared_ptr<File> file) : m_file_sp(file) { assert(file); }; in StreamFile() function 38 ~StreamFile() override; 54 StreamFile(const StreamFile &) = delete; 55 const StreamFile &operator=(const StreamFile &) = delete; 59 class LockedStreamFile : public StreamFile { [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | StreamFile.cpp | |
| H A D | EmulateInstruction.cpp | 319 StreamFile strm(stdout, false); in ReadMemoryDefault() 334 StreamFile strm(stdout, false); in WriteMemoryDefault() 347 StreamFile strm(stdout, false); in ReadRegisterDefault() 364 StreamFile strm(stdout, false); in WriteRegisterDefault()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | StreamFile.h | |
| /freebsd/contrib/llvm-project/lldb/source/API/ |
| H A D | SBStream.cpp | 13 #include "lldb/Host/StreamFile.h" 108 m_opaque_up = std::make_unique<StreamFile>(std::move(file.get())); in RedirectToFile() 143 m_opaque_up = std::make_unique<StreamFile>(file_sp); in RedirectToFile() 164 m_opaque_up = std::make_unique<StreamFile>(fd, transfer_fh_ownership); in RedirectToFileDescriptor()
|
| H A D | SBInstructionList.cpp | 118 StreamFile stream(out, false); in Print() 126 StreamFile stream(out.m_opaque_sp); in Print() 134 StreamFile stream(out_sp); in Print()
|
| H A D | SBInstruction.cpp | 294 StreamFile out_stream(out_sp); in Print()
|
| H A D | SBProcess.cpp | 326 StreamFile stream(out); in ReportEventState()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | CommandReturnObject.h | 82 lldb::StreamSP stream_sp(new StreamFile(file_sp)); in SetImmediateOutputFile() 89 lldb::StreamSP stream_sp(new StreamFile(file_sp)); in SetImmediateErrorFile()
|
| /freebsd/contrib/llvm-project/lldb/source/Expression/ |
| H A D | REPL.cpp | 222 lldb::StreamFileSP output_sp = std::make_shared<StreamFile>( in IOHandlerInputComplete() 224 lldb::StreamFileSP error_sp = std::make_shared<StreamFile>( in IOHandlerInputComplete()
|
| /freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | ScriptInterpreter.cpp | 244 std::make_shared<StreamFile>(outfile_handle, NativeFile::Owned), in ScriptInterpreterIORedirect()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/ |
| H A D | lldb-forward.h | 216 class StreamFile; variable 437 typedef std::shared_ptr<lldb_private::StreamFile> StreamFileSP;
|
| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | StackFrameList.cpp | 403 StreamFile s(stdout, false); in FetchFramesUpTo()
|
| H A D | DynamicRegisterInfo.cpp | 748 StreamFile s(stdout, false); in Dump()
|
| H A D | Target.cpp | 1188 StreamFile out_file(path.c_str(), in SerializeBreakpointsToFile()
|
| /freebsd/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectSettings.cpp | 345 StreamFile out_file(path.c_str(), options, in DoExecute()
|
| H A D | CommandObjectThread.cpp | 2204 std::optional<StreamFile> out_file; in DoExecute() 2399 std::optional<StreamFile> out_file; in DoExecute()
|
| H A D | CommandObjectMemory.cpp | 770 std::make_unique<StreamFile>(std::move(outfile.get())); in DoExecute()
|
| /freebsd/lib/clang/liblldb/ |
| H A D | Makefile | 280 SRCS+= Host/common/StreamFile.cpp
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemote.cpp | 124 StreamFile stream(std::move(file.get())); in DumpProcessGDBRemotePacketHistory()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.cpp | 8784 StreamFile s(stdout, false); in DumpTypeDescription()
|