Home
last modified time | relevance | path

Searched refs:m_stream (Results 1 – 9 of 9) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/DataFormatters/
H A DValueObjectPrinter.cpp49 m_stream = s; in Init()
91 m_stream->Indent(); in PrintValueObject()
105 m_stream->EOL(); in PrintValueObject()
576 m_stream->EOL(); in PrintChildrenPreamble()
586 m_stream->IndentMore(); in PrintChildrenPreamble()
651 m_stream->IndentLess(); in PrintChildrenPostamble()
727 m_stream->EOL(); in PrintChildren()
729 m_stream->EOL(); in PrintChildren()
744 m_stream->EOL(); in PrintChildren()
823 m_stream->EOL(); in PrintChildrenIfNeeded()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Host/common/
H A DFile.cpp266 return _fileno(m_stream); in GetDescriptor()
268 return fileno(m_stream); in GetDescriptor()
305 if (m_stream) { in GetStream()
312 return m_stream; in GetStream()
322 if (::fclose(m_stream) == EOF) in Close()
330 if (::fflush(m_stream) == EOF) in Close()
341 m_stream = kInvalidStream; in Close()
567 if (::feof(m_stream)) in Read()
569 else if (::ferror(m_stream)) in Read()
631 if (::feof(m_stream)) in Write()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Host/
H A DFile.h380 NativeFile() : m_descriptor(kInvalidDescriptor), m_stream(kInvalidStream) {} in NativeFile()
383 : m_descriptor(kInvalidDescriptor), m_own_descriptor(false), m_stream(fh), in NativeFile()
388 m_stream(kInvalidStream), m_options(options), m_own_stream(false) {} in NativeFile()
430 bool StreamIsValidUnlocked() const { return m_stream != kInvalidStream; } in StreamIsValidUnlocked()
446 FILE *m_stream; variable
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DStringPrinter.h33 void SetStream(Stream *s) { m_stream = s; } in SetStream()
35 Stream *GetStream() const { return m_stream; } in GetStream()
79 Stream *m_stream = nullptr;
H A DValueObjectPrinter.h126 Stream *m_stream; variable
/freebsd-14.2/contrib/llvm-project/lldb/source/Utility/
H A DLog.cpp381 : m_stream(fd, should_close, buffer_size == 0) { in StreamLogHandler()
383 m_stream.SetBufferSize(buffer_size); in StreamLogHandler()
390 m_stream.flush(); in Flush()
394 if (m_stream.GetBufferSize() > 0) { in Emit()
396 m_stream << message; in Emit()
398 m_stream << message; in Emit()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStream.h55 Stream *m_stream; variable
60 ByteDelta(Stream &s) : m_stream(&s), m_start(s.GetWrittenBytes()) {} in ByteDelta()
63 size_t operator*() const { return m_stream->GetWrittenBytes() - m_start; }
H A DLog.h73 llvm::raw_fd_ostream m_stream; variable
/freebsd-14.2/contrib/bsnmp/tests/
H A Dcatch.hpp2578 m_stream << value; in operator <<()
2582 ReusableStringStream m_stream; member
2592 m_stream << value; in operator <<()
5306 std::unique_ptr<IStream const> m_stream; member in Catch::Config
5425 std::ostream* m_stream; member
9862 m_stream( openStream() ) in Config()
10901 : m_stream( &_fullConfig->stream() ), m_fullConfig( _fullConfig ) {} in ReporterConfig()
10904 : m_stream( &_stream ), m_fullConfig( _fullConfig ) {} in ReporterConfig()
10906 std::ostream& ReporterConfig::stream() const { return *m_stream; } in stream()
10933 builder.m_info.message = builder.m_stream.str(); in AssertionStats()
[all …]