Lines Matching defs:context
27 byte ReadByte(ulong address, IPeripheral context = null, ulong? cpuState = null); in ReadByte()
28 byte ReadByteWithState(ulong address, IPeripheral context, IContextState stateObj); in ReadByteWithState()
29 … void WriteByte(ulong address, byte value, IPeripheral context = null, ulong? cpuState = null); in WriteByte()
30 … void WriteByteWithState(ulong address, byte value, IPeripheral context, IContextState stateObj); in WriteByteWithState()
32 ushort ReadWord(ulong address, IPeripheral context = null, ulong? cpuState = null); in ReadWord()
33 ushort ReadWordWithState(ulong address, IPeripheral context, IContextState stateObj); in ReadWordWithState()
34 … void WriteWord(ulong address, ushort value, IPeripheral context = null, ulong? cpuState = null); in WriteWord()
35 … void WriteWordWithState(ulong address, ushort value, IPeripheral context, IContextState stateObj); in WriteWordWithState()
37 uint ReadDoubleWord(ulong address, IPeripheral context = null, ulong? cpuState = null); in ReadDoubleWord()
38 uint ReadDoubleWordWithState(ulong address, IPeripheral context, IContextState stateObj); in ReadDoubleWordWithState()
39 …void WriteDoubleWord(ulong address, uint value, IPeripheral context = null, ulong? cpuState = null… in WriteDoubleWord()
40 …void WriteDoubleWordWithState(ulong address, uint value, IPeripheral context, IContextState stateO… in WriteDoubleWordWithState()
42 ulong ReadQuadWord(ulong address, IPeripheral context = null, ulong? cpuState = null); in ReadQuadWord()
43 ulong ReadQuadWordWithState(ulong address, IPeripheral context, IContextState stateObj); in ReadQuadWordWithState()
44 …void WriteQuadWord(ulong address, ulong value, IPeripheral context = null, ulong? cpuState = null); in WriteQuadWord()
45 …void WriteQuadWordWithState(ulong address, ulong value, IPeripheral context, IContextState stateOb… in WriteQuadWordWithState()
47 …nt count, byte[] destination, int startIndex, bool onlyMemory = false, IPeripheral context = null); in ReadBytes()
48 … byte[] ReadBytes(ulong address, int count, bool onlyMemory = false, IPeripheral context = null); in ReadBytes()
50 … void WriteBytes(byte[] bytes, ulong address, bool onlyMemory = false, IPeripheral context = null); in WriteBytes()
51 …ulong address, int startingIndex, long count, bool onlyMemory = false, IPeripheral context = null); in WriteBytes()
52 …ytes(byte[] bytes, ulong address, long count, bool onlyMemory = false, IPeripheral context = null); in WriteBytes()
54 void ZeroRange(Range range, IPeripheral context = null); in ZeroRange()
55 …bool TryConvertStateToUlongForContext(IPeripheral context, IContextState stateObj, out ulong? stat… in TryConvertStateToUlongForContext()
57 IBusRegistered<IBusPeripheral> WhatIsAt(ulong address, IPeripheral context = null); in WhatIsAt()
58 IPeripheral WhatPeripheralIsAt(ulong address, IPeripheral context = null); in WhatPeripheralIsAt()
60 bool IsAddressRangeLocked(Range range, IPeripheral context = null); in IsAddressRangeLocked()
61 void SetAddressRangeLocked(Range range, bool locked, IPeripheral context = null); in SetAddressRangeLocked()
70 … IEnumerable<IBusRegistered<IBusPeripheral>> GetRegisteredPeripherals(IPeripheral context = null); in GetRegisteredPeripherals()
71 …e<IBusRegistered<IBusPeripheral>> GetRegistrationsForPeripheralType<T>(IPeripheral context = null); in GetRegistrationsForPeripheralType()
73 … bool TryGetCurrentContextState<T>(out IPeripheralWithTransactionState context, out T stateObj); in TryGetCurrentContextState()
75 void UnregisterFromAddress(ulong address, ICPU context = null); in UnregisterFromAddress()
76 …text(IBusPeripheral peripheral, BusRangeRegistration newRegistration, ICPU context, Func<IEnumerab… in MoveRegistrationWithinContext()
87 string FindSymbolAt(ulong offset, ICPU context = null); in FindSymbolAt()
89 …AllSymbolAddresses(string symbolName, out IEnumerable<ulong> symbolAddresses, ICPU context = null); in TryGetAllSymbolAddresses()
90 bool TryFindSymbolAt(ulong offset, out string name, out Symbol symbol, ICPU context = null); in TryFindSymbolAt()
93 …dSegment segment, IBusPeripheral owner, bool relative = true, ICPUWithMappedMemory context = null); in MapMemory()
94 IBusRegistered<MappedMemory> FindMemory(ulong address, ICPU context = null); in FindMemory()
95 bool IsMemory(ulong address, ICPU context = null); in IsMemory()
101 …bolsFrom(IELF elf, bool useVirtualAddress = false, ulong? textAddress = null, ICPU context = null); in LoadSymbolsFrom()
104 SymbolLookup GetLookup(ICPU context = null); in GetLookup()
143 … public static void ZeroRange(this IBusController bus, long from, long size, ICPU context = null) in ZeroRange()
148 … ulong GetSymbolAddress(this IBusController bus, string symbolName, int index, ICPU context = null) in GetSymbolAddress()
166 …blic static ulong GetSymbolAddress(this IBusController bus, string symbolName, ICPU context = null) in GetSymbolAddress()
183 …dFilePath fileName, bool useVirtualAddress = false, ulong? textAddress = null, ICPU context = null) in LoadSymbolsFrom()