Home | History | Annotate | Download | only in sensorservice

Lines Matching refs:activeConnections

524         SortedVector< sp<SensorEventConnection> > activeConnections;
525 populateActiveConnections(&activeConnections);
650 size_t numConnections = activeConnections.size();
652 if (activeConnections[i] != NULL) {
653 activeConnections[i]->removeSensor(handle);
664 size_t numConnections = activeConnections.size();
666 if (activeConnections[i] != 0) {
667 activeConnections[i]->sendEvents(mSensorEventBuffer, count, mSensorEventScratch,
669 needsWakeLock |= activeConnections[i]->needsWakeLock();
672 if (activeConnections[i]->hasOneShotSensors()) {
673 cleanupAutoDisabledSensorLocked(activeConnections[i], mSensorEventBuffer,
694 SortedVector< sp<SensorEventConnection> > activeConnections;
695 populateActiveConnections(&activeConnections);
698 for (size_t i=0 ; i < activeConnections.size(); ++i) {
699 if (activeConnections[i] != 0) {
700 activeConnections[i]->resetWakeLockRefCount();
1317 SortedVector< sp<SensorEventConnection> >* activeConnections) {
1322 activeConnections->add(connection);