Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DSnapshotTracker.cs21 snapshots = new List<SnapshotDescriptor>(); in SnapshotTracker()
27 … int index = snapshots.BinarySearch(new SnapshotDescriptor(timeStamp, null), snapshotComparer); in GetLastSnapshotBeforeOrAtTimeStamp()
58 var newSnap = new SnapshotDescriptor(timeStamp, path); in Save()
98 private readonly List<SnapshotDescriptor> snapshots;
101 private class SnapshotDescriptor class in Antmicro.Renode.Utilities.SnapshotTracker
103 public SnapshotDescriptor(TimeInterval timeStamp, string path) in SnapshotDescriptor() method in Antmicro.Renode.Utilities.SnapshotTracker.SnapshotDescriptor
113 private class SnapshotComparer : IComparer<SnapshotDescriptor>
115 public int Compare(SnapshotDescriptor snap1, SnapshotDescriptor snap2) in Compare()