| /freebsd-12.1/contrib/llvm/tools/lldb/source/Core/ |
| H A D | StreamFile.cpp | 21 StreamFile::StreamFile() : Stream(), m_file() {} in StreamFile() function in StreamFile 23 StreamFile::StreamFile(uint32_t flags, uint32_t addr_size, ByteOrder byte_order) in StreamFile() function in StreamFile 26 StreamFile::StreamFile(int fd, bool transfer_ownership) in StreamFile() function in StreamFile 29 StreamFile::StreamFile(FILE *fh, bool transfer_ownership) in StreamFile() function in StreamFile 32 StreamFile::StreamFile(const char *path) : Stream(), m_file() { in StreamFile() function in StreamFile 39 StreamFile::StreamFile(const char *path, uint32_t options, uint32_t permissions) in StreamFile() function in StreamFile 45 StreamFile::~StreamFile() {} in ~StreamFile() 47 void StreamFile::Flush() { m_file.Flush(); } in Flush() 49 size_t StreamFile::WriteImpl(const void *s, size_t length) { in WriteImpl()
|
| H A D | EmulateInstruction.cpp | 318 StreamFile strm(stdout, false); in ReadMemoryDefault() 333 StreamFile strm(stdout, false); in WriteMemoryDefault() 346 StreamFile strm(stdout, false); in ReadRegisterDefault() 363 StreamFile strm(stdout, false); in WriteRegisterDefault()
|
| H A D | Debugger.cpp | 761 m_input_file_sp(std::make_shared<StreamFile>(stdin, false)), in Debugger() 762 m_output_file_sp(std::make_shared<StreamFile>(stdout, false)), in Debugger() 763 m_error_file_sp(std::make_shared<StreamFile>(stderr, false)), in Debugger() 885 m_input_file_sp = std::make_shared<StreamFile>(fh, tranfer_ownership); in SetInputFileHandle() 900 m_output_file_sp = std::make_shared<StreamFile>(fh, tranfer_ownership); in SetOutputFileHandle() 919 m_error_file_sp = std::make_shared<StreamFile>(fh, tranfer_ownership); in SetErrorFileHandle() 1069 in = std::make_shared<StreamFile>(stdin, false); in AdoptTopIOHandlerFilesIfInvalid() 1080 out = std::make_shared<StreamFile>(stdout, false); in AdoptTopIOHandlerFilesIfInvalid() 1091 err = std::make_shared<StreamFile>(stdout, false); in AdoptTopIOHandlerFilesIfInvalid()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/ |
| H A D | StreamFile.h | 23 class StreamFile : public Stream { 28 StreamFile(); 30 StreamFile(uint32_t flags, uint32_t addr_size, lldb::ByteOrder byte_order); 32 StreamFile(int fd, bool transfer_ownership); 34 StreamFile(const char *path); 36 StreamFile(const char *path, uint32_t options, 39 StreamFile(FILE *fh, bool transfer_ownership); 41 ~StreamFile() override; 58 DISALLOW_COPY_AND_ASSIGN(StreamFile);
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/API/ |
| H A D | SBStream.cpp | 68 StreamFile *stream_file = new StreamFile; in RedirectToFile() 101 m_opaque_ap.reset(new StreamFile(fh, transfer_fh_ownership)); in RedirectToFileHandle() 123 m_opaque_ap.reset(new StreamFile(::fdopen(fd, "w"), transfer_fh_ownership)); in RedirectToFileDescriptor()
|
| H A D | SBInstruction.cpp | 228 StreamFile out_stream(out, false); in Print()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/ |
| H A D | CommandReturnObject.h | 67 lldb::StreamSP stream_sp(new StreamFile(fh, transfer_fh_ownership)); 72 lldb::StreamSP stream_sp(new StreamFile(fh, transfer_fh_ownership));
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/ |
| H A D | CommandObjectBugreport.cpp | 80 StreamFileSP outfile_stream = std::make_shared<StreamFile>(); in DoExecute()
|
| H A D | CommandObjectSettings.cpp | 412 StreamFile out_file(path.c_str(), options, in DoExecute()
|
| H A D | CommandObjectMemory.cpp | 755 StreamFile outfile_stream; in DoExecute()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/ |
| H A D | lldb-forward.h | 221 class StreamFile; variable 441 typedef std::shared_ptr<lldb_private::StreamFile> StreamFileSP;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Target/ |
| H A D | StackFrameList.cpp | 430 StreamFile s(stdout, false); in GetFramesUpTo() 830 StreamFile s(stdout, false); in Merge()
|
| H A D | Target.cpp | 1032 StreamFile out_file(path.c_str(), in SerializeBreakpointsToFile()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptInterpreterPython.cpp | 815 output_file_sp.reset(new StreamFile(outfile_handle, true)); in ExecuteOneLine() 831 input_file_sp.reset(new StreamFile()); in ExecuteOneLine() 836 output_file_sp.reset(new StreamFile()); in ExecuteOneLine()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ |
| H A D | DynamicRegisterInfo.cpp | 698 StreamFile s(stdout, false); in Dump()
|
| /freebsd-12.1/lib/clang/liblldb/ |
| H A D | Makefile | 162 SRCS+= Core/StreamFile.cpp
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/ |
| H A D | CommandInterpreter.cpp | 2369 StreamFileSP input_file_sp(new StreamFile()); in HandleCommandsFromFile()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/ |
| H A D | RenderScriptRuntime.cpp | 4703 StreamFile outfile_stream; in DoExecute()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemote.cpp | 104 StreamFile strm; in DumpProcessGDBRemotePacketHistory()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/ |
| H A D | ClangASTContext.cpp | 9664 StreamFile s(stdout, false); in DumpTypeDescription()
|