Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DValueObjectPrinter.cpp48 m_stream = s; in Init()
52 assert(m_stream && "cannot print to a NULL Stream"); in Init()
82 m_stream->Indent(); in PrintValueObject()
95 m_stream->EOL(); in PrintValueObject()
231 m_stream->Printf("%s: ", GetMostSpecializedValue().GetLocationAsCString()); in PrintLocationIfNeeded()
317 m_stream->PutCString(dest_stream.GetString()); in PrintDecl()
324 m_stream->Printf("(%s) ", typeName.GetData()); in PrintDecl()
326 m_stream->Printf("%s =", varName.GetData()); in PrintDecl()
328 m_stream->Printf(" ="); in PrintDecl()
429 m_stream->Printf(" <could not resolve type>"); in PrintValueAndSummaryIfNeeded()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DFile.cpp266 return _fileno(m_stream); in GetDescriptor()
268 return fileno(m_stream); in GetDescriptor()
299 m_stream = llvm::sys::RetryAfterSignal(nullptr, ::fdopen, m_descriptor, in GetStream()
305 if (m_stream) { in GetStream()
312 return m_stream; in Close()
322 if (::fclose(m_stream) == EOF) in Close()
330 if (::fflush(m_stream) == EOF) in Close()
341 m_stream = kInvalidStream; in GetFileSpec()
402 result = ::fseek(m_stream, offset, SEEK_SET); in SeekFromCurrent()
433 result = ::fseek(m_stream, offse in SeekFromEnd()
[all...]
/freebsd/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; }
446 FILE *m_stream;
428 FILE *m_stream; global() variable
/freebsd/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.h149 Stream *m_stream; variable
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DLog.cpp382 : m_stream(fd, should_close, buffer_size == 0) { in StreamLogHandler()
384 m_stream.SetBufferSize(buffer_size); in StreamLogHandler()
391 m_stream.flush(); in Flush()
395 if (m_stream.GetBufferSize() > 0) { in Emit()
397 m_stream << message; in Emit()
399 m_stream << message; in Emit()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStream.h55 Stream *m_stream;
60 ByteDelta(Stream &s) : m_stream(&s), m_start(s.GetWrittenBytes()) {}
63 size_t operator*() const { return m_stream->GetWrittenBytes() - m_start; }
44 Stream *m_stream; global() variable
H A DLog.h73 llvm::raw_fd_ostream m_stream; variable
/freebsd/contrib/bsnmp/tests/
H A Dcatch.hpp2578 m_stream << value; in operator <<()
2582 ReusableStringStream m_stream; member
2592 m_stream << value; in operator <<()
2739 …ssageType, ( Catch::MessageStream() << __VA_ARGS__ + ::Catch::StreamEndStop() ).m_stream.str() ); \
5306 std::unique_ptr<IStream const> m_stream; member in Catch::Config
5425 std::ostream* m_stream; member
9862 m_stream( openStream() ) in Config()
9907 std::ostream& Config::stream() const { return m_stream->stream(); } in stream()
10901 : m_stream( &_fullConfig->stream() ), m_fullConfig( _fullConfig ) {} in ReporterConfig()
10904 : m_stream( &_stream ), m_fullConfig( _fullConfig ) {} in ReporterConfig()
[all …]