Home | History | Annotate | Download | only in diagnostics

Lines Matching defs:txt

49   virtual bool Read(std::wstring* txt) = 0;
79 virtual bool Write(const std::wstring& txt) {
80 DWORD sz = txt.size();
81 return (TRUE == ::WriteConsoleW(std_out_, txt.c_str(), sz, &sz, NULL));
86 virtual bool Read(std::wstring* txt) {
92 txt->assign(buf, read/2);
153 virtual bool Read(std::wstring* txt) {
159 *txt = UTF8ToWide(input);
217 bool WriteInfoText(const std::wstring& txt) {
219 return console_->Write(txt);
363 std::wstring txt;
364 console->Read(&txt);