Lines Matching refs:hb
152 HRESULT CHashCallbackConsole::BeforeFirstFile(const CHashBundle &hb) in BeforeFirstFile() argument
159 FOR_VECTOR (i, hb.Hashers) in BeforeFirstFile()
163 const CHasherState &h = hb.Hashers[i]; in BeforeFirstFile()
183 PrintSeparatorLine(hb.Hashers); in BeforeFirstFile()
262 HRESULT CHashCallbackConsole::SetOperationResult(UInt64 fileSize, const CHashBundle &hb, bool showH… in SetOperationResult() argument
266 PrintResultLine(fileSize, hb.Hashers, k_HashCalc_Index_Current, showHash); in SetOperationResult()
312 void PrintHashStat(CStdOutStream &so, const CHashBundle &hb) in PrintHashStat() argument
314 FOR_VECTOR (i, hb.Hashers) in PrintHashStat()
316 const CHasherState &h = hb.Hashers[i]; in PrintHashStat()
318 if (hb.NumFiles != 1 || hb.NumDirs != 0) in PrintHashStat()
320 if (hb.NumAltStreams != 0) in PrintHashStat()
335 HRESULT CHashCallbackConsole::AfterLastFile(const CHashBundle &hb) in AfterLastFile() argument
341 PrintSeparatorLine(hb.Hashers); in AfterLastFile()
343 PrintResultLine(hb.FilesSize, hb.Hashers, k_HashCalc_Index_DataSum, true); in AfterLastFile()
347 if (hb.NumFiles != 1 || hb.NumDirs != 0) in AfterLastFile()
349 if (hb.NumDirs != 0) in AfterLastFile()
350 PrintProperty("Folders", hb.NumDirs); in AfterLastFile()
351 PrintProperty("Files", hb.NumFiles); in AfterLastFile()
354 PrintProperty("Size", hb.FilesSize); in AfterLastFile()
356 if (hb.NumAltStreams != 0) in AfterLastFile()
358 PrintProperty("Alternate streams", hb.NumAltStreams); in AfterLastFile()
359 PrintProperty("Alternate streams size", hb.AltStreamsSize); in AfterLastFile()
363 PrintHashStat(*_so, hb); in AfterLastFile()