Home
last modified time | relevance | path

Searched refs:stream_sp (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandReturnObject.h33 lldb::StreamSP stream_sp(m_out_stream.GetStreamAtIndex(eStreamStringIndex)); in GetOutputData()
34 if (stream_sp) in GetOutputData()
35 return std::static_pointer_cast<StreamString>(stream_sp)->GetString(); in GetOutputData()
40 lldb::StreamSP stream_sp(m_err_stream.GetStreamAtIndex(eStreamStringIndex)); in GetErrorData()
41 if (stream_sp) in GetErrorData()
42 return std::static_pointer_cast<StreamString>(stream_sp)->GetString(); in GetErrorData()
48 lldb::StreamSP stream_sp(m_out_stream.GetStreamAtIndex(eStreamStringIndex)); in GetOutputStream()
49 if (!stream_sp) { in GetOutputStream()
50 stream_sp = std::make_shared<StreamString>(); in GetOutputStream()
51 m_out_stream.SetStreamAtIndex(eStreamStringIndex, stream_sp); in GetOutputStream()
80 SetImmediateOutputStream(const lldb::StreamSP & stream_sp) SetImmediateOutputStream() argument
86 SetImmediateErrorStream(const lldb::StreamSP & stream_sp) SetImmediateErrorStream() argument
[all...]
H A DScriptInterpreter.h288 lldb::StreamSP stream_sp) { in ScriptedStopHookHandleStop() argument
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStreamTee.h24 StreamTee(lldb::StreamSP &stream_sp) { in StreamTee() argument
26 if (stream_sp) in StreamTee()
27 m_streams.push_back(stream_sp); in StreamTee()
30 StreamTee(lldb::StreamSP &stream_sp, lldb::StreamSP &stream_2_sp) { in StreamTee() argument
32 if (stream_sp) in StreamTee()
33 m_streams.push_back(stream_sp); in StreamTee()
72 size_t AppendStream(const lldb::StreamSP &stream_sp) { in AppendStream() argument
75 m_streams.push_back(stream_sp); in AppendStream()
89 lldb::StreamSP stream_sp; in GetStreamAtIndex() local
92 stream_sp = m_streams[idx]; in GetStreamAtIndex()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandReturnObject.cpp144 lldb::StreamSP stream_sp; in Clear() local
145 stream_sp = m_out_stream.GetStreamAtIndex(eStreamStringIndex); in Clear()
146 if (stream_sp) in Clear()
147 static_cast<StreamString *>(stream_sp.get())->Clear(); in Clear()
148 stream_sp = m_err_stream.GetStreamAtIndex(eStreamStringIndex); in Clear()
149 if (stream_sp) in Clear()
150 static_cast<StreamString *>(stream_sp.get())->Clear(); in Clear()
/freebsd/contrib/llvm-project/lldb/tools/lldb-server/
H A DLLDBServerUtilities.cpp26 TestLogHandler(std::shared_ptr<llvm::raw_ostream> stream_sp) in TestLogHandler() argument
27 : m_stream_sp(stream_sp) {} in TestLogHandler()
41 auto stream_sp = std::make_shared<raw_fd_ostream>( in GetLogStream() local
44 return std::make_shared<TestLogHandler>(stream_sp); in GetLogStream()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanTracer.cpp36 ThreadPlanTracer::ThreadPlanTracer(Thread &thread, lldb::StreamSP &stream_sp)
38 m_enabled(false), m_stream_sp(stream_sp), m_thread(nullptr) {} in ThreadPlanTracer()
88 lldb::StreamSP &stream_sp) in ThreadPlanAssemblyTracer()
89 : ThreadPlanTracer(thread, stream_sp), m_disassembler_sp(), m_intptr_type(), in ThreadPlanAssemblyTracer() argument
37 ThreadPlanTracer(Thread & thread,lldb::StreamSP & stream_sp) ThreadPlanTracer() argument
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlanTracer.h31 ThreadPlanTracer(Thread &thread, lldb::StreamSP &stream_sp);
73 ThreadPlanAssemblyTracer(Thread &thread, lldb::StreamSP &stream_sp);
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/
H A DInstrumentationRuntimeASan.cpp267 StreamFileSP stream_sp( NotifyBreakpointHit() local
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/Utility/
H A DReportRetriever.cpp213 if (StreamFileSP stream_sp = StreamFileSP( in NotifyBreakpointHit() local
215 stream_sp->Printf("AddressSanitizer report breakpoint hit. Use 'thread " in NotifyBreakpointHit()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPythonImpl.h101 lldb::StreamSP stream_sp) override;
H A DScriptInterpreterPython.cpp1666 lldb::StreamSP stream_sp) { in ScriptedStopHookHandleStop() argument
1669 assert(stream_sp && "can't call a stop hook with an invalid stream"); in ScriptedStopHookHandleStop()
1677 implementor_sp->GetValue(), exc_ctx_ref_sp, stream_sp); in ScriptedStopHookHandleStop()