Lines Matching refs:stdio_sync_filebuf
41 extern stdio_sync_filebuf<char> buf_cout_sync;
42 extern stdio_sync_filebuf<char> buf_cin_sync;
43 extern stdio_sync_filebuf<char> buf_cerr_sync;
50 extern stdio_sync_filebuf<wchar_t> buf_wcout_sync;
51 extern stdio_sync_filebuf<wchar_t> buf_wcin_sync;
52 extern stdio_sync_filebuf<wchar_t> buf_wcerr_sync;
85 new (&buf_cout_sync) stdio_sync_filebuf<char>(stdout); in Init()
86 new (&buf_cin_sync) stdio_sync_filebuf<char>(stdin); in Init()
87 new (&buf_cerr_sync) stdio_sync_filebuf<char>(stderr); in Init()
102 new (&buf_wcout_sync) stdio_sync_filebuf<wchar_t>(stdout); in Init()
103 new (&buf_wcin_sync) stdio_sync_filebuf<wchar_t>(stdin); in Init()
104 new (&buf_wcerr_sync) stdio_sync_filebuf<wchar_t>(stderr); in Init()
168 buf_cout_sync.~stdio_sync_filebuf<char>(); in sync_with_stdio()
169 buf_cin_sync.~stdio_sync_filebuf<char>(); in sync_with_stdio()
170 buf_cerr_sync.~stdio_sync_filebuf<char>(); in sync_with_stdio()
173 buf_wcout_sync.~stdio_sync_filebuf<wchar_t>(); in sync_with_stdio()
174 buf_wcin_sync.~stdio_sync_filebuf<wchar_t>(); in sync_with_stdio()
175 buf_wcerr_sync.~stdio_sync_filebuf<wchar_t>(); in sync_with_stdio()