Home
last modified time | relevance | path

Searched refs:bytesSent (Results 1 – 2 of 2) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/
DMPFS_QSPI.cs53 bytesSent = 0; in MPFS_QSPI()
187 bytesSent = 0; in Reset()
251 for(var i = bytesSent; i < totalBytes; i++) in HandleByte()
259 if(bytesSent < (int)commandBytes.Value) in HandleByte()
263 if(bytesSent == (int)commandBytes.Value) in HandleByte()
265 for(var i = bytesSent; i < totalBytes; i++) in HandleByte()
276 if(bytesSent < totalBytes) in HandleByte()
307 bytesSent++; in TryFinishTransmission()
308 if(bytesSent == totalBytes) in TryFinishTransmission()
316 if(bytesSent == totalBytes) in TryHandleInterrupt()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/I2C/
DTegraI2CController.cs178 var bytesSent = 0; in TransferData()
180 while(payloadDone < payloadSize && bytesSent++ < 4) in TransferData()