• Home
  • Raw
  • Download

Lines Matching refs:hb

181 HRESULT CHashCallbackConsole::BeforeFirstFile(const CHashBundle &hb)  in BeforeFirstFile()  argument
194 FOR_VECTOR (i, hb.Hashers) in BeforeFirstFile()
197 const CHasherState &h = hb.Hashers[i]; in BeforeFirstFile()
218 PrintSeparatorLine(hb.Hashers); in BeforeFirstFile()
307 HRESULT CHashCallbackConsole::SetOperationResult(UInt64 fileSize, const CHashBundle &hb, bool showH… in SetOperationResult() argument
320 PrintResultLine(fileSize, hb.Hashers, k_HashCalc_Index_Current, showHash, s); in SetOperationResult()
371 void PrintHashStat(CStdOutStream &so, const CHashBundle &hb) in PrintHashStat() argument
373 FOR_VECTOR (i, hb.Hashers) in PrintHashStat()
375 const CHasherState &h = hb.Hashers[i]; in PrintHashStat()
377 if (hb.NumFiles != 1 || hb.NumDirs != 0) in PrintHashStat()
379 if (hb.NumAltStreams != 0) in PrintHashStat()
394 HRESULT CHashCallbackConsole::AfterLastFile(CHashBundle &hb) in AfterLastFile() argument
400 PrintSeparatorLine(hb.Hashers); in AfterLastFile()
402 PrintResultLine(hb.FilesSize, hb.Hashers, k_HashCalc_Index_DataSum, true, AString()); in AfterLastFile()
406 if (hb.NumFiles != 1 || hb.NumDirs != 0) in AfterLastFile()
408 if (hb.NumDirs != 0) in AfterLastFile()
409 PrintProperty("Folders", hb.NumDirs); in AfterLastFile()
410 PrintProperty("Files", hb.NumFiles); in AfterLastFile()
413 PrintProperty("Size", hb.FilesSize); in AfterLastFile()
415 if (hb.NumAltStreams != 0) in AfterLastFile()
417 PrintProperty("Alternate streams", hb.NumAltStreams); in AfterLastFile()
418 PrintProperty("Alternate streams size", hb.AltStreamsSize); in AfterLastFile()
422 PrintHashStat(*_so, hb); in AfterLastFile()