Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/stlport/src/
Diostream.cpp200 auto_ptr<streambuf> clog_buf; in _S_initialize() local
211 clog_buf.reset(_Stl_create_filebuf("/stdlog.txt", ios::out)); in _S_initialize()
215 clog_buf.reset(new stdio_ostreambuf(stderr)); in _S_initialize()
221 clog_buf.reset(_Stl_create_filebuf(stderr, ios_base::out)); in _S_initialize()
227 /*ostream* ptr_clog = */ new(&clog) ostream(clog_buf.get()); clog_buf.release(); in _S_initialize()
314 auto_ptr<streambuf> clog_buf; in sync_with_stdio() local
325 clog_buf.reset(_Stl_create_filebuf("/stdlog.txt", ios::out)); in sync_with_stdio()
329 clog_buf.reset(new stdio_ostreambuf(stderr)); in sync_with_stdio()
335 clog_buf.reset(_Stl_create_filebuf(stderr, ios_base::out)); in sync_with_stdio()
338 if (cin_buf.get() != 0 && cout_buf.get() != 0 && cerr_buf.get() != 0 && clog_buf.get() != 0) { in sync_with_stdio()
[all …]