Lines Matching refs:offset
20 …ilePath path, ulong address, int size, bool initable = false, string name = null, ulong offset = 0) in PyDevFromFile() argument
23 @this.SystemBus.Register(pyDev, new BusPointRegistration(address, offset)); in PyDevFromFile()
30 …tring script, ulong address, int size, bool initable = false, string name = null, ulong offset = 0) in PyDevFromString() argument
33 @this.SystemBus.Register(pyDev, new BusPointRegistration(address, offset)); in PyDevFromString()
74 public byte ReadByte(long offset) in ReadByte() argument
77 HandleRead(offset); in ReadByte()
81 public void WriteByte(long offset, byte value) in WriteByte() argument
84 HandleWrite(offset, value); in WriteByte()
87 public uint ReadDoubleWord(long offset) in ReadDoubleWord() argument
90 HandleRead(offset); in ReadDoubleWord()
94 public void WriteDoubleWord(long offset, uint value) in WriteDoubleWord() argument
97 HandleWrite(offset, value); in WriteDoubleWord()
100 public ulong ReadQuadWord(long offset) in ReadQuadWord() argument
103 HandleRead(offset); in ReadQuadWord()
107 public void WriteQuadWord(long offset, ulong value) in WriteQuadWord() argument
110 HandleWrite(offset, value); in WriteQuadWord()
113 public ushort ReadWord(long offset) in ReadWord() argument
116 HandleRead(offset); in ReadWord()
120 public void WriteWord(long offset, ushort value) in WriteWord() argument
123 HandleWrite(offset, value); in WriteWord()
138 pythonRunner.Request.offset = command; in ControlRead()
182 private void HandleRead(long offset) in HandleRead() argument
188 pythonRunner.Request.offset = offset; in HandleRead()
193 private void HandleWrite(long offset, ulong value) in HandleWrite() argument
199 pythonRunner.Request.offset = offset; in HandleWrite()