Lines Matching refs:stdio_sync_filebuf
47 extern stdio_sync_filebuf<char> buf_cout_sync;
48 extern stdio_sync_filebuf<char> buf_cin_sync;
49 extern stdio_sync_filebuf<char> buf_cerr_sync;
56 extern stdio_sync_filebuf<wchar_t> buf_wcout_sync;
57 extern stdio_sync_filebuf<wchar_t> buf_wcin_sync;
58 extern stdio_sync_filebuf<wchar_t> buf_wcerr_sync;
89 new (&buf_cout_sync) stdio_sync_filebuf<char>(stdout); in Init()
90 new (&buf_cin_sync) stdio_sync_filebuf<char>(stdin); in Init()
91 new (&buf_cerr_sync) stdio_sync_filebuf<char>(stderr); in Init()
106 new (&buf_wcout_sync) stdio_sync_filebuf<wchar_t>(stdout); in Init()
107 new (&buf_wcin_sync) stdio_sync_filebuf<wchar_t>(stdin); in Init()
108 new (&buf_wcerr_sync) stdio_sync_filebuf<wchar_t>(stderr); in Init()
169 buf_cout_sync.~stdio_sync_filebuf<char>(); in sync_with_stdio()
170 buf_cin_sync.~stdio_sync_filebuf<char>(); in sync_with_stdio()
171 buf_cerr_sync.~stdio_sync_filebuf<char>(); in sync_with_stdio()
174 buf_wcout_sync.~stdio_sync_filebuf<wchar_t>(); in sync_with_stdio()
175 buf_wcin_sync.~stdio_sync_filebuf<wchar_t>(); in sync_with_stdio()
176 buf_wcerr_sync.~stdio_sync_filebuf<wchar_t>(); in sync_with_stdio()