Lines Matching full:m_os
158 ozstream() : m_fp(0), m_os(0) {
161 : m_fp(0), m_os(0) {
165 : m_fp(0), m_os(0) {
199 if (m_os) {
200 ::gzwrite(m_fp, m_os->str(), m_os->pcount());
201 delete[] m_os->str(); delete m_os; m_os = 0;
237 if (m_os == 0) m_os = new ostrstream;
238 return *m_os;
242 if (m_os && m_os->pcount()>0) {
244 oss->fill(m_os->fill());
245 oss->flags(m_os->flags());
246 oss->precision(m_os->precision());
247 oss->width(m_os->width());
248 ::gzwrite(m_fp, m_os->str(), m_os->pcount());
249 delete[] m_os->str(); delete m_os; m_os = oss;
255 ostrstream* m_os;