Lines Matching refs:Windows
20 Windows = new List<MMUWindow>(); in WindowMMUBusController()
25 for(var i = 0; i < Windows.Count; i++) in AssertWindowsAreValid()
27 Windows[i].AssertIsValid(); in AssertWindowsAreValid()
28 for(var j = 0; j < Windows.Count; j++) in AssertWindowsAreValid()
30 … if(i != j && Windows[i].ContainsAddress(Windows[j].Start) && Windows[j].Length > 0) in AssertWindowsAreValid()
40 public List<MMUWindow> Windows { get; } property in Antmicro.Renode.Peripherals.Bus.WindowMMUBusController
46 var privileges = Windows[index].Privileges; in ValidateOperation()
49 address = Windows[index].TranslateAddress(address); in ValidateOperation()
63 for(index = 0; index < Windows.Count; index++) in TryFindWindowIndex()
65 if(Windows[index].ContainsAddress(address)) in TryFindWindowIndex()
67 if(Windows[index].Valid) in TryFindWindowIndex()