Lines Matching defs:context

23         public byte ReadByte(ulong address, IPeripheral context = null, ulong? cpuState = null)  in ReadByte()
67 public byte ReadByteWithState(ulong address, IPeripheral context, IContextState stateObj) in ReadByteWithState()
79 …public void WriteByte(ulong address, byte value, IPeripheral context = null, ulong? cpuState = nul… in WriteByte()
125 …public void WriteByteWithState(ulong address, byte value, IPeripheral context, IContextState state… in WriteByteWithState()
137 public ushort ReadWord(ulong address, IPeripheral context = null, ulong? cpuState = null) in ReadWord()
181 public ushort ReadWordWithState(ulong address, IPeripheral context, IContextState stateObj) in ReadWordWithState()
193 …public void WriteWord(ulong address, ushort value, IPeripheral context = null, ulong? cpuState = n… in WriteWord()
239 …public void WriteWordWithState(ulong address, ushort value, IPeripheral context, IContextState sta… in WriteWordWithState()
251 … public uint ReadDoubleWord(ulong address, IPeripheral context = null, ulong? cpuState = null) in ReadDoubleWord()
295 … public uint ReadDoubleWordWithState(ulong address, IPeripheral context, IContextState stateObj) in ReadDoubleWordWithState()
307 …public void WriteDoubleWord(ulong address, uint value, IPeripheral context = null, ulong? cpuState… in WriteDoubleWord()
353 …public void WriteDoubleWordWithState(ulong address, uint value, IPeripheral context, IContextState… in WriteDoubleWordWithState()
365 public ulong ReadQuadWord(ulong address, IPeripheral context = null, ulong? cpuState = null) in ReadQuadWord()
409 … public ulong ReadQuadWordWithState(ulong address, IPeripheral context, IContextState stateObj) in ReadQuadWordWithState()
421 …public void WriteQuadWord(ulong address, ulong value, IPeripheral context = null, ulong? cpuState … in WriteQuadWord()
467 …public void WriteQuadWordWithState(ulong address, ulong value, IPeripheral context, IContextState … in WriteQuadWordWithState()
659 …private bool TryFindPeripheralAccessMethods(ulong address, IPeripheral context, out PeripheralAcce… in TryFindPeripheralAccessMethods()