Home
last modified time | relevance | path

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

/external/lzma/CPP/7zip/UI/Console/
DUpdateCallbackConsole.cpp46 void Print_ErrorFormatIndex_Warning(CStdOutStream *_so, const CCodecs *codecs, const CArc &arc);
93 if (_so) in OpenResult()
95 *_so << endl; in OpenResult()
97 *_so << arc.Path << endl; in OpenResult()
102 if (_so) in OpenResult()
103 PrintErrorFlags(*_so, "WARNINGS:", warningFlags); in OpenResult()
108 if (_so) in OpenResult()
109 *_so << "WARNINGS:" << endl << er.WarningMessage << endl; in OpenResult()
112 if (_so) in OpenResult()
114 *_so << endl; in OpenResult()
[all …]
DExtractCallbackConsole.cpp161 if (_so) in PrintStat()
165 *_so << s << endl; in PrintStat()
253 static void PrintFileInfo(CStdOutStream *_so, const wchar_t *path, const FILETIME *ft, const UInt64… in PrintFileInfo() argument
255 *_so << kTab << "Path: "; in PrintFileInfo()
256 _so->NormalizePrint_wstr(path); in PrintFileInfo()
257 *_so << endl; in PrintFileInfo()
262 *_so << kTab << "Size: " << s << endl; in PrintFileInfo()
268 *_so << kTab << "Modified: " << temp << endl; in PrintFileInfo()
283 if (_so) in AskOverwrite()
285 *_so << endl << "Would you like to replace the existing file:\n"; in AskOverwrite()
[all …]
DExtractCallbackConsole.h20 CStdOutStream *_so; variable
24 bool NeedPercents() const { return _percent._so != NULL; } in NeedPercents()
30 if (_so) in ClosePercentsAndFlush()
31 _so->Flush(); in ClosePercentsAndFlush()
37 _so = outStream; in Init()
39 _percent._so = percentStream; in Init()
77 if (NeedPercents() && _so == _percent._so) in ClosePercents_for_so()
85 if (_so) in ClosePercentsAndFlush()
86 _so->Flush(); in ClosePercentsAndFlush()
DHashCon.cpp26 if (PrintHeaders && _so) in StartScanning()
27 *_so << kScanningMessage << endl; in StartScanning()
62 if (PrintHeaders && _so) in FinishScanning()
65 *_so << _s << endl << endl; in FinishScanning()
149 *_so << _s << endl; in PrintSeparatorLine()
154 if (PrintHeaders && _so) in BeforeFirstFile()
182 *_so << _s << endl; in BeforeFirstFile()
259 *_so << _s; in PrintResultLine()
264 if (_so) in SetOperationResult()
270 *_so << kEmptyFileAlias; in SetOperationResult()
[all …]
DUpdateCallbackConsole.h34 CStdOutStream *_so; variable
44 bool NeedPercents() const { return _percent._so != NULL; }; in NeedPercents()
68 _so = outStream; in Init()
70 _percent._so = percentStream; in Init()
81 if (NeedPercents() && _so == _percent._so) in ClosePercents_for_so()
DOpenCallbackConsole.h17 CStdOutStream *_so; variable
25 bool NeedPercents() const { return _percent._so != NULL; } in NeedPercents()
52 _so = outStream; in Init()
54 _percent._so = percentStream; in Init()
DPercentPrinter.cpp52 *_so << _temp; in ClosePrint()
55 _so->Flush(); in ClosePrint()
145 _so->Normalize_UString(_tempU); in Print()
159 _so->Normalize_UString(_tempU); in Print()
173 *_so << _s; in Print()
175 _so->Flush(); in Print()
DPercentPrinter.h44 CStdOutStream *_so;
DOpenCallbackConsole.cpp90 RINOK(GetPassword_HRESULT(_so, Password)); in Open_CryptoGetTextPassword()