Lines Matching refs:devAddr

35             throw I2CException("Failed to get funcs", busStr, devAddr, errno);  in getFuncs()
50 throw I2CException("Missing SMBUS_READ_BYTE", busStr, devAddr); in checkReadFuncs()
57 devAddr); in checkReadFuncs()
64 devAddr); in checkReadFuncs()
71 devAddr); in checkReadFuncs()
78 busStr, devAddr); in checkReadFuncs()
96 throw I2CException("Missing SMBUS_WRITE_BYTE", busStr, devAddr); in checkWriteFuncs()
103 devAddr); in checkWriteFuncs()
110 devAddr); in checkWriteFuncs()
117 devAddr); in checkWriteFuncs()
124 busStr, devAddr); in checkWriteFuncs()
137 throw I2CException("Device already open", busStr, devAddr); in open()
148 throw I2CException("Failed to open", busStr, devAddr, errno); in open()
155 ret = ioctl(fd, I2C_SLAVE, devAddr); in open()
163 throw I2CException("Failed to set I2C_SLAVE", busStr, devAddr, errno); in open()
179 throw I2CException("Failed to close", busStr, devAddr, errno); in close()
199 throw I2CException("Failed to read byte", busStr, devAddr, errno); in read()
218 throw I2CException("Failed to read byte data", busStr, devAddr, errno); in read()
237 throw I2CException("Failed to read word data", busStr, devAddr, errno); in read()
266 devAddr, errno); in read()
273 throw I2CException("Failed to read block data", busStr, devAddr, errno); in read()
292 throw I2CException("Failed to write byte", busStr, devAddr, errno); in write()
309 throw I2CException("Failed to write byte data", busStr, devAddr, errno); in write()
326 throw I2CException("Failed to write word data", busStr, devAddr, errno); in write()
356 throw I2CException("Failed to write block data", busStr, devAddr, in write()
362 uint8_t busId, uint8_t devAddr, InitialState initialState, int maxRetries) in create() argument
365 new I2CDevice(busId, devAddr, initialState, maxRetries)); in create()
370 create(uint8_t busId, uint8_t devAddr, in create() argument
373 return I2CDevice::create(busId, devAddr, initialState, maxRetries); in create()