Searched refs:mSensors (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/services/java/com/android/server/
H A DSensorService.java55 int mSensors = 0; field in class:SensorService.Listener
63 mSensors |= (1<<sensor);
69 mSensors &= ~(1<<sensor);
73 return ((mSensors & (1<<sensor)) != 0);
83 for (int sensor=0 ; sensor<32 && mSensors!=0 ; sensor++) {
174 if (l.mSensors == 0) {
/frameworks/base/core/java/android/hardware/
H A DSensorManager.java420 public int mSensors; field in class:SensorManager.ListenerDelegate
475 mSensors |= 1<<sensor.getHandle();
477 return mSensors;
480 mSensors &= ~(1<<sensor.getHandle());
482 return mSensors;
485 return ((mSensors & (1<<sensor.getHandle())) != 0);
1338 private int mSensors; field in class:SensorManager.LegacyListener
1344 mSensors = 0;
1348 mSensors |= legacyType;
1352 mSensors
[all...]
/frameworks/base/location/java/com/android/internal/location/
H A DGpsLocationProvider.java626 int mSensors = 0; field in class:GpsLocationProvider.Listener

Completed in 97 milliseconds