Home
last modified time | relevance | path

Searched defs:byte (Results 1 – 8 of 8) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/Structure/Registers/
DPeripheralRegisterExtensions.cs438 …public static ByteRegister WithReadCallback(this ByteRegister register, Action<byte, byte> readCal… in WithReadCallback()
448 …public static ByteRegister WithWriteCallback(this ByteRegister register, Action<byte, byte> writeC… in WithWriteCallback()
458 …public static ByteRegister WithChangeCallback(this ByteRegister register, Action<byte, byte> chang… in WithChangeCallback()
DPeripheralRegister.cs389 public void DefineReadCallback(Action<byte, byte> readCallback) in DefineReadCallback()
400 public void DefineWriteCallback(Action<byte, byte> writeCallback) in DefineWriteCallback()
411 public void DefineChangeCallback(Action<byte, byte> changeCallback) in DefineChangeCallback()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Hooks/
DUartHooksExtensions.cs17 … public static void AddCharHook(this IUART uart, Func<byte, bool> predicate, Action<byte> hook) in AddCharHook()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/USB/
DUSBDeviceCore.cs32 …Action<SetupPacket, byte[], Action<byte[]>> customSetupPacketHandler = null) : base(18, (byte)Desc… in USBDeviceCore() argument
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USBDeprecated/
DUSBEthernetControlModelDevice.cs266 …private void setEthernetMulticastFilters(uint numberOfFilters, Dictionary<byte,byte[]> multicastAd… in setEthernetMulticastFilters()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/DMA/
DSTM32DMA2D.cs374 …uffer, int sourceOffset = 0, int destinationOffset = 0, int count = 1, Func<byte[], int, byte[]> c… in DoCopy()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Sensors/
DICP_101xx.cs293 …private void RegisterCommand(Command command, Action<byte[], int> writeHandler = null, Func<int, I… in RegisterCommand()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DBitHelper.cs416 public static void ForeachBit(ulong reg, Action<byte, bool> action, byte? bitCount = null) in ForeachBit()