Lines Matching refs:bytes
293 int MXC_I2C_Write(mxc_i2c_regs_t *i2c, unsigned char *bytes, unsigned int *len) in MXC_I2C_Write() argument
295 return MXC_I2C_RevA_Write((mxc_i2c_reva_regs_t *)i2c, bytes, len); in MXC_I2C_Write()
298 int MXC_I2C_Read(mxc_i2c_regs_t *i2c, unsigned char *bytes, unsigned int *len, int ack) in MXC_I2C_Read() argument
300 return MXC_I2C_RevA_Read((mxc_i2c_reva_regs_t *)i2c, bytes, len, ack); in MXC_I2C_Read()
303 int MXC_I2C_ReadRXFIFO(mxc_i2c_regs_t *i2c, volatile unsigned char *bytes, unsigned int len) in MXC_I2C_ReadRXFIFO() argument
305 return MXC_I2C_RevA_ReadRXFIFO((mxc_i2c_reva_regs_t *)i2c, bytes, len); in MXC_I2C_ReadRXFIFO()
308 int MXC_I2C_ReadRXFIFODMA(mxc_i2c_regs_t *i2c, unsigned char *bytes, unsigned int len, in MXC_I2C_ReadRXFIFODMA() argument
312 return MXC_I2C_RevA_ReadRXFIFODMA((mxc_i2c_reva_regs_t *)i2c, bytes, len, MXC_DMA); in MXC_I2C_ReadRXFIFODMA()
320 int MXC_I2C_WriteTXFIFO(mxc_i2c_regs_t *i2c, volatile unsigned char *bytes, unsigned int len) in MXC_I2C_WriteTXFIFO() argument
322 return MXC_I2C_RevA_WriteTXFIFO((mxc_i2c_reva_regs_t *)i2c, bytes, len); in MXC_I2C_WriteTXFIFO()
325 int MXC_I2C_WriteTXFIFODMA(mxc_i2c_regs_t *i2c, unsigned char *bytes, unsigned int len, in MXC_I2C_WriteTXFIFODMA() argument
329 return MXC_I2C_RevA_WriteTXFIFODMA((mxc_i2c_reva_regs_t *)i2c, bytes, len, MXC_DMA); in MXC_I2C_WriteTXFIFODMA()