Lines Matching refs:hb
116 HRESULT CHashCallbackConsole::BeforeFirstFile(const CHashBundle &hb) in BeforeFirstFile() argument
119 FOR_VECTOR (i, hb.Hashers) in BeforeFirstFile()
121 const CHasherState &h = hb.Hashers[i]; in BeforeFirstFile()
132 PrintSeparatorLine(hb.Hashers); in BeforeFirstFile()
193 HRESULT CHashCallbackConsole::SetOperationResult(UInt64 fileSize, const CHashBundle &hb, bool showH… in SetOperationResult() argument
195 PrintResultLine(fileSize, hb.Hashers, k_HashCalc_Index_Current, showHash); in SetOperationResult()
226 void PrintHashStat(CStdOutStream &p, const CHashBundle &hb) in PrintHashStat() argument
228 FOR_VECTOR (i, hb.Hashers) in PrintHashStat()
230 const CHasherState &h = hb.Hashers[i]; in PrintHashStat()
233 if (hb.NumFiles != 1 || hb.NumDirs != 0) in PrintHashStat()
235 if (hb.NumAltStreams != 0) in PrintHashStat()
251 HRESULT CHashCallbackConsole::AfterLastFile(const CHashBundle &hb) in AfterLastFile() argument
253 PrintSeparatorLine(hb.Hashers); in AfterLastFile()
255 PrintResultLine(hb.FilesSize, hb.Hashers, k_HashCalc_Index_DataSum, true); in AfterLastFile()
259 if (hb.NumFiles != 1 || hb.NumDirs != 0) in AfterLastFile()
261 if (hb.NumDirs != 0) in AfterLastFile()
262 PrintProperty("Folders", hb.NumDirs); in AfterLastFile()
263 PrintProperty("Files", hb.NumFiles); in AfterLastFile()
265 PrintProperty("Size", hb.FilesSize); in AfterLastFile()
266 if (hb.NumAltStreams != 0) in AfterLastFile()
268 PrintProperty("AltStreams", hb.NumAltStreams); in AfterLastFile()
269 PrintProperty("AltStreams size", hb.AltStreamsSize); in AfterLastFile()
271 PrintHashStat(*m_PercentPrinter.OutStream, hb); in AfterLastFile()