Home
last modified time | relevance | path

Searched refs:stream_compound (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/boost/log/sources/
Drecord_ostream.hpp437 struct stream_compound struct
439 stream_compound* next; argument
445 explicit stream_compound(record& rec) : next(NULL), stream(rec) {} in stream_compound() function
449 BOOST_LOG_API static stream_compound* allocate_compound(record& rec);
451 BOOST_LOG_API static void release_compound(stream_compound* compound) BOOST_NOEXCEPT;
482 typedef typename stream_provider_type::stream_compound stream_compound; typedef in boost::aux::record_pump
489 stream_compound* m_pCompound;
492 explicit auto_release(stream_compound* p) BOOST_NOEXCEPT : m_pCompound(p) {} in auto_release()
500 stream_compound* m_pStreamCompound;
/third_party/boost/libs/log/src/
Drecord_ostream.cpp97 typedef typename stream_provider< CharT >::stream_compound stream_compound_t;
135 BOOST_LOG_API typename stream_provider< CharT >::stream_compound*
141 stream_compound* p = pool.m_Top;
148 return new stream_compound(rec);
153 BOOST_LOG_API void stream_provider< CharT >::release_compound(stream_compound* compound) BOOST_NOEX… in release_compound()