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

/freebsd-13-stable/contrib/llvm-project/lldb/source/DataFormatters/
H A DValueObjectPrinter.cpp49 m_stream = s;
54 assert(m_stream && "cannot print to a NULL Stream");
79 m_stream->Indent();
93 m_stream->EOL();
216 m_stream->Printf("%s: ", m_valobj->GetLocationAsCString());
295 m_stream->PutCString(dest_stream.GetString());
302 m_stream->Printf("(%s) ", typeName.GetData());
304 m_stream->Printf("%s =", varName.GetData());
306 m_stream->Printf(" =");
394 m_stream
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/API/
H A DSBReproducerPrivate.h42 m_stream(directory.CopyByAppendingPathComponent("sbapi.bin").GetPath(),
44 m_serializer(m_stream) {}
53 llvm::raw_fd_ostream m_stream; member in class:lldb_private::repro::SBProvider
/freebsd-13-stable/contrib/llvm-project/lldb/source/Host/common/
H A DFile.cpp259 return _fileno(m_stream);
261 return fileno(m_stream);
291 m_stream = llvm::sys::RetryAfterSignal(nullptr, ::fdopen, m_descriptor,
297 if (m_stream) {
304 return m_stream;
311 if (::fclose(m_stream) == EOF)
314 if (::fflush(m_stream) == EOF)
323 m_stream = kInvalidStream;
380 result = ::fseek(m_stream, offset, SEEK_SET);
406 result = ::fseek(m_stream, offse
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DStringPrinter.h33 void SetStream(Stream *s) { m_stream = s; }
35 Stream *GetStream() const { return m_stream; }
79 Stream *m_stream = nullptr; member in class:lldb_private::formatters::StringPrinter::DumpToStreamOptions
H A DValueObjectPrinter.h123 Stream *m_stream; member in class:lldb_private::ValueObjectPrinter
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Host/
H A DFile.h378 m_stream(kInvalidStream), m_options(), m_own_stream(false) {}
381 : m_descriptor(kInvalidDescriptor), m_own_descriptor(false), m_stream(fh),
386 m_stream(kInvalidStream), m_options(options), m_own_stream(false) {}
421 bool StreamIsValid() const { return m_stream != kInvalidStream; }
426 FILE *m_stream; member in class:lldb_private::NativeFile
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStream.h44 Stream *m_stream; member in class:lldb_private::Stream::ByteDelta
49 ByteDelta(Stream &s) : m_stream(&s), m_start(s.GetWrittenBytes()) {}
52 size_t operator*() const { return m_stream->GetWrittenBytes() - m_start; }
H A DReproducerInstrumentation.h586 Serializer(llvm::raw_ostream &stream = llvm::outs()) : m_stream(stream) {}
595 void SerializeAll() { m_stream.flush(); }
623 m_stream.write(reinterpret_cast<const char *>(&t), sizeof(T));
646 m_stream << t;
647 m_stream.write(0x0);
670 llvm::raw_ostream &m_stream; member in class:lldb_private::repro::Serializer
/freebsd-13-stable/contrib/bsnmp/tests/
H A Dcatch.hpp2578 m_stream << value;
2582 ReusableStringStream m_stream;
2592 m_stream << value;
2739 catchAssertionHandler.handleMessage( messageType, ( Catch::MessageStream() << __VA_ARGS__ + ::Catch::StreamEndStop() ).m_stream.str() ); \
5306 std::unique_ptr<IStream const> m_stream;
5425 std::ostream* m_stream;
9862 m_stream( openStream() )
9907 std::ostream& Config::stream() const { return m_stream->stream(); }
10901 : m_stream( &_fullConfig->stream() ), m_fullConfig( _fullConfig ) {}
10904 : m_stream(
[all...]

Completed in 204 milliseconds