Lines Matching refs:BytesRead
167 DWORD BytesRead; in NtfsInfoMain() local
191 sizeof(Data), &BytesRead, NULL) == FALSE) in NtfsInfoMain()
204 if (BytesRead > sizeof(NTFS_VOLUME_DATA_BUFFER)) in NtfsInfoMain()
343 ValidateSizes(ULONG Length, DWORD ProcCount, DWORD BytesRead, DWORD SpecificSize) in ValidateSizes() argument
346 if (Length * ProcCount > BytesRead) in ValidateSizes()
348 …_ftprintf(stderr, _T("Only performed a partial read: %lu (expected: %lu)\n"), BytesRead, Length * … in ValidateSizes()
353 if ((sizeof(FILESYSTEM_STATISTICS) + SpecificSize) * ProcCount > BytesRead) in ValidateSizes()
355 …_ftprintf(stderr, _T("Only performed a partial read: %lu (expected: %Iu)\n"), BytesRead, (sizeof(F… in ValidateSizes()
381 SumExFat(PVOID Statistics, PVOID Specific, ULONG Length, DWORD ProcCount, DWORD BytesRead) in SumExFat() argument
388 if (ValidateSizes(Length, ProcCount, BytesRead, sizeof(EXFAT_STATISTICS))) in SumExFat()
423 SumFat(PVOID Statistics, PVOID Specific, ULONG Length, DWORD ProcCount, DWORD BytesRead) in SumFat() argument
430 if (ValidateSizes(Length, ProcCount, BytesRead, sizeof(FAT_STATISTICS))) in SumFat()
465 SumNtfs(PVOID Statistics, PVOID Specific, ULONG Length, DWORD ProcCount, DWORD BytesRead) in SumNtfs() argument
472 if (ValidateSizes(Length, ProcCount, BytesRead, sizeof(NTFS_STATISTICS))) in SumNtfs()
530 DWORD BytesRead, Length, ProcCount; in StatisticsMain() local
556 Length, &BytesRead, NULL) == FALSE) in StatisticsMain()
580 Length, &BytesRead, NULL) == FALSE) in StatisticsMain()
613 … Statistics->SizeOfCompleteStructure, ProcCount, BytesRead)) in StatisticsMain()