Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DCachingFileFetcher.cs209 var bytesDownloaded = 0L; in TryDownloadInner()
219 ….TotalBytesToReceive, e.ProgressPercentage, 1.0 * (e.BytesReceived - bytesDownloaded) / period.Tot… in TryDownloadInner()
222 bytesDownloaded = e.BytesReceived; in TryDownloadInner()
300 …private string GenerateProgressMessage(Uri uri, long? bytesDownloaded = null, long? totalBytes = n… in GenerateProgressMessage() argument
304 if(bytesDownloaded.HasValue && totalBytes.HasValue) in GenerateProgressMessage()
310 … strBldr.AppendFormat("\nProgress: {0}B downloaded", Misc.NormalizeBinary(bytesDownloaded.Value)); in GenerateProgressMessage()
314 …rogress: {0}% ({1}B/{2}B)", progressPercentage, Misc.NormalizeBinary(bytesDownloaded.Value), Misc.… in GenerateProgressMessage()