Lines Matching refs:HwSensorClient
169 typedef struct HwSensorClient HwSensorClient; typedef
174 HwSensorClient* clients;
178 struct HwSensorClient { struct
179 HwSensorClient* next; argument
188 _hwSensorClient_free( HwSensorClient* cl ) in _hwSensorClient_free() argument
192 HwSensorClient** pnode = &cl->sensors->clients; in _hwSensorClient_free()
194 HwSensorClient* node = *pnode; in _hwSensorClient_free()
225 static HwSensorClient*
228 HwSensorClient* cl; in _hwSensorClient_new()
245 static void _hwSensorClient_receive( HwSensorClient* cl,
255 HwSensorClient* cl = opaque; in _hwSensorClient_recv()
263 HwSensorClient* cl = opaque; in _hwSensorClient_close()
272 _hwSensorClient_send( HwSensorClient* cl, const uint8_t* msg, int msglen ) in _hwSensorClient_send()
279 _hwSensorClient_enabled( HwSensorClient* cl, int sensorId ) in _hwSensorClient_enabled()
290 HwSensorClient* cl = opaque; in _hwSensorClient_tick()
360 _hwSensorClient_receive( HwSensorClient* cl, uint8_t* msg, int msglen ) in _hwSensorClient_receive()
460 HwSensorClient* sc = opaque; in _hwSensorClient_save()
471 HwSensorClient* sc = opaque; in _hwSensorClient_load()
487 HwSensorClient* cl = _hwSensorClient_new(sensors); in _hwSensors_connect()