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

/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandReturnObject.h32 lldb::StreamSP stream_sp(m_out_stream.GetStreamAtIndex(eStreamStringIndex));
33 if (stream_sp)
34 return std::static_pointer_cast<StreamString>(stream_sp)->GetString();
39 lldb::StreamSP stream_sp(m_err_stream.GetStreamAtIndex(eStreamStringIndex));
40 if (stream_sp)
41 return std::static_pointer_cast<StreamString>(stream_sp)->GetString();
47 lldb::StreamSP stream_sp(m_out_stream.GetStreamAtIndex(eStreamStringIndex));
48 if (!stream_sp) {
49 stream_sp = std::make_shared<StreamString>();
50 m_out_stream.SetStreamAtIndex(eStreamStringIndex, stream_sp);
75 SetImmediateOutputStream(const lldb::StreamSP &stream_sp) argument
79 SetImmediateErrorStream(const lldb::StreamSP &stream_sp) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStreamTee.h25 StreamTee(lldb::StreamSP &stream_sp) argument
28 if (stream_sp)
29 m_streams.push_back(stream_sp);
32 StreamTee(lldb::StreamSP &stream_sp, lldb::StreamSP &stream_2_sp) argument
35 if (stream_sp)
36 m_streams.push_back(stream_sp);
76 size_t AppendStream(const lldb::StreamSP &stream_sp) { argument
79 m_streams.push_back(stream_sp);
93 lldb::StreamSP stream_sp; local
96 stream_sp
100 SetStreamAtIndex(uint32_t idx, const lldb::StreamSP &stream_sp) argument
[all...]
H A DLog.h197 void Enable(const std::shared_ptr<llvm::raw_ostream> &stream_sp,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandReturnObject.cpp156 lldb::StreamSP stream_sp; local
157 stream_sp = m_out_stream.GetStreamAtIndex(eStreamStringIndex);
158 if (stream_sp)
159 static_cast<StreamString *>(stream_sp.get())->Clear();
160 stream_sp = m_err_stream.GetStreamAtIndex(eStreamStringIndex);
161 if (stream_sp)
162 static_cast<StreamString *>(stream_sp.get())->Clear();
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlanTracer.h31 ThreadPlanTracer(Thread &thread, lldb::StreamSP &stream_sp);
82 ThreadPlanAssemblyTracer(Thread &thread, lldb::StreamSP &stream_sp);
/freebsd-13-stable/contrib/llvm-project/lldb/tools/lldb-server/
H A DLLDBServerUtilities.cpp26 std::shared_ptr<raw_ostream> stream_sp = std::make_shared<raw_fd_ostream>( local
29 return stream_sp;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Utility/
H A DLog.cpp87 void Log::Enable(const std::shared_ptr<llvm::raw_ostream> &stream_sp, argument
94 m_stream_sp = stream_sp;
324 auto stream_sp = GetStream(); local
325 if (!stream_sp)
332 *stream_sp << message;
333 stream_sp->flush();
335 *stream_sp << message;
336 stream_sp->flush();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanTracer.cpp36 ThreadPlanTracer::ThreadPlanTracer(Thread &thread, lldb::StreamSP &stream_sp) argument
38 m_single_step(true), m_enabled(false), m_stream_sp(stream_sp) {}
88 lldb::StreamSP &stream_sp)
89 : ThreadPlanTracer(thread, stream_sp), m_disassembler_sp(), m_intptr_type(),
87 ThreadPlanAssemblyTracer(Thread &thread, lldb::StreamSP &stream_sp) argument
H A DProcess.cpp5813 StreamSP stream_sp = GetTarget().GetDebugger().GetAsyncOutputStream();
5814 if (!stream_sp)
5834 stream_sp->PrintfVarArg(fmt, args);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/
H A DInstrumentationRuntimeASan.cpp268 StreamFileSP stream_sp(
270 if (stream_sp) {
271 stream_sp->Printf("AddressSanitizer report breakpoint hit. Use 'thread "
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp431 StreamSP stream_sp = GetTarget().GetDebugger().GetAsyncOutputStream(); local
432 stream_sp->Printf("ERROR: target description file %s failed to parse.\n",

Completed in 166 milliseconds