Home | History | Annotate | Download | only in libsensors

Lines Matching refs:mpl

136         mpl               = 0,  //all mpl entries must be consecutive and in this order
143 mpl_power, //special handle for MPL pm interaction
162 return mpl;
180 setCallbackObject(p_mplsen); //setup the callback object for handing mpl callbacks
186 mSensors[mpl] = p_mplsen;
187 mPollFds[mpl].fd = mSensors[mpl]->getFd();
188 mPollFds[mpl].events = POLLIN;
189 mPollFds[mpl].revents = 0;
191 mSensors[mpl_accel] = mSensors[mpl];
192 mPollFds[mpl_accel].fd = ((MPLSensor*)mSensors[mpl])->getAccelFd();
196 mSensors[mpl_timer] = mSensors[mpl];
197 mPollFds[mpl_timer].fd = ((MPLSensor*)mSensors[mpl])->getTimerFd();
227 //setup MPL pm interaction handle
228 mPollFds[mpl_power].fd = ((MPLSensor*)mSensors[mpl])->getPowerFd();
286 //special handling for the mpl, which has multiple handles
287 if(i==mpl) {
320 ((MPLSensor*)mSensors[mpl])->handlePowerEvent();