Lines Matching refs:bytes
249 int MXC_I2C_Write(mxc_i2c_regs_t *i2c, unsigned char *bytes, unsigned int *len) in MXC_I2C_Write() argument
251 return MXC_I2C_RevA_Write((mxc_i2c_reva_regs_t *)i2c, bytes, len); in MXC_I2C_Write()
255 int MXC_I2C_Read(mxc_i2c_regs_t *i2c, unsigned char *bytes, unsigned int *len, int ack) in MXC_I2C_Read() argument
257 return MXC_I2C_RevA_Read((mxc_i2c_reva_regs_t *)i2c, bytes, len, ack); in MXC_I2C_Read()
261 int MXC_I2C_ReadRXFIFO(mxc_i2c_regs_t *i2c, volatile unsigned char *bytes, unsigned int len) in MXC_I2C_ReadRXFIFO() argument
263 return MXC_I2C_RevA_ReadRXFIFO((mxc_i2c_reva_regs_t *)i2c, bytes, len); in MXC_I2C_ReadRXFIFO()
267 int MXC_I2C_ReadRXFIFODMA(mxc_i2c_regs_t *i2c, unsigned char *bytes, unsigned int len, in MXC_I2C_ReadRXFIFODMA() argument
271 return MXC_I2C_RevA_ReadRXFIFODMA((mxc_i2c_reva_regs_t *)i2c, bytes, len, MXC_DMA); in MXC_I2C_ReadRXFIFODMA()
281 int MXC_I2C_WriteTXFIFO(mxc_i2c_regs_t *i2c, volatile unsigned char *bytes, unsigned int len) in MXC_I2C_WriteTXFIFO() argument
283 return MXC_I2C_RevA_WriteTXFIFO((mxc_i2c_reva_regs_t *)i2c, bytes, len); in MXC_I2C_WriteTXFIFO()
287 int MXC_I2C_WriteTXFIFODMA(mxc_i2c_regs_t *i2c, unsigned char *bytes, unsigned int len, in MXC_I2C_WriteTXFIFODMA() argument
291 return MXC_I2C_RevA_WriteTXFIFODMA((mxc_i2c_reva_regs_t *)i2c, bytes, len, MXC_DMA); in MXC_I2C_WriteTXFIFODMA()