Lines Matching refs:stdio_sync_filebuf
43 extern stdio_sync_filebuf<char> buf_cout_sync;
44 extern stdio_sync_filebuf<char> buf_cin_sync;
45 extern stdio_sync_filebuf<char> buf_cerr_sync;
52 extern stdio_sync_filebuf<wchar_t> buf_wcout_sync;
53 extern stdio_sync_filebuf<wchar_t> buf_wcin_sync;
54 extern stdio_sync_filebuf<wchar_t> buf_wcerr_sync;
87 new (&buf_cout_sync) stdio_sync_filebuf<char>(stdout); in Init()
88 new (&buf_cin_sync) stdio_sync_filebuf<char>(stdin); in Init()
89 new (&buf_cerr_sync) stdio_sync_filebuf<char>(stderr); in Init()
104 new (&buf_wcout_sync) stdio_sync_filebuf<wchar_t>(stdout); in Init()
105 new (&buf_wcin_sync) stdio_sync_filebuf<wchar_t>(stdin); in Init()
106 new (&buf_wcerr_sync) stdio_sync_filebuf<wchar_t>(stderr); in Init()
170 buf_cout_sync.~stdio_sync_filebuf<char>(); in sync_with_stdio()
171 buf_cin_sync.~stdio_sync_filebuf<char>(); in sync_with_stdio()
172 buf_cerr_sync.~stdio_sync_filebuf<char>(); in sync_with_stdio()
175 buf_wcout_sync.~stdio_sync_filebuf<wchar_t>(); in sync_with_stdio()
176 buf_wcin_sync.~stdio_sync_filebuf<wchar_t>(); in sync_with_stdio()
177 buf_wcerr_sync.~stdio_sync_filebuf<wchar_t>(); in sync_with_stdio()