Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DSimpleFileCache.cs18 cacheLocation = Path.Combine(Emulator.UserDirectoryPath, location); in SimpleFileCache()
37 filename = Path.Combine(cacheLocation, sha); in TryGetEntryWithSha()
49 using(var locker = new FileLocker(Path.Combine(cacheLocation, lockFileName))) in StoreEntryWithSha()
51 FileCopier.Copy(filename, Path.Combine(cacheLocation, sha), true); in StoreEntryWithSha()
65 using(var locker = new FileLocker(Path.Combine(cacheLocation, lockFileName))) in Populate()
67 var dinfo = new DirectoryInfo(cacheLocation); in Populate()
77 Directory.CreateDirectory(cacheLocation); in EnsureCacheDirectory()
81 private readonly string cacheLocation; field in Antmicro.Renode.Utilities.SimpleFileCache