Home
last modified time | relevance | path

Searched refs:StreamFile (Results 1 – 20 of 20) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DStreamFile.cpp21 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 DEmulateInstruction.cpp318 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 DDebugger.cpp761 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 DStreamFile.h23 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 DSBStream.cpp68 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 DSBInstruction.cpp228 StreamFile out_stream(out, false); in Print()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DCommandReturnObject.h67 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 DCommandObjectBugreport.cpp80 StreamFileSP outfile_stream = std::make_shared<StreamFile>(); in DoExecute()
H A DCommandObjectSettings.cpp412 StreamFile out_file(path.c_str(), options, in DoExecute()
H A DCommandObjectMemory.cpp755 StreamFile outfile_stream; in DoExecute()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-forward.h221 class StreamFile; variable
441 typedef std::shared_ptr<lldb_private::StreamFile> StreamFileSP;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DStackFrameList.cpp430 StreamFile s(stdout, false); in GetFramesUpTo()
830 StreamFile s(stdout, false); in Merge()
H A DTarget.cpp1032 StreamFile out_file(path.c_str(), in SerializeBreakpointsToFile()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp815 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 DDynamicRegisterInfo.cpp698 StreamFile s(stdout, false); in Dump()
/freebsd-12.1/lib/clang/liblldb/
H A DMakefile162 SRCS+= Core/StreamFile.cpp
/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2369 StreamFileSP input_file_sp(new StreamFile()); in HandleCommandsFromFile()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp4703 StreamFile outfile_stream; in DoExecute()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp104 StreamFile strm; in DumpProcessGDBRemotePacketHistory()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTContext.cpp9664 StreamFile s(stdout, false); in DumpTypeDescription()