Searched defs:mLights (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/services/core/java/com/android/server/lights/
H A DLightsService.java32 final LightImpl mLights[] = new LightImpl[LightsManager.LIGHT_ID_COUNT]; field in class:LightsService
175 mLights[i] = new LightImpl(i);
200 return mLights[id];
/frameworks/base/core/java/android/app/
H A DNotificationChannel.java140 private boolean mLights; field in class:NotificationChannel
196 mLights = in.readByte() != 0;
241 dest.writeByte(mLights ? (byte) 1 : (byte) 0);
367 this.mLights = lights;
494 return mLights;
860 if (mLights != that.mLights) return false;
896 result = 31 * result + (mLights ? 1 : 0);
919 ", mLights=" + mLights
[all...]
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationManagerService.java332 ArrayList<String> mLights = new ArrayList<>(); field in class:NotificationManagerService
805 mLights.clear();
3275 N = mLights.size();
3284 pw.println(mLights.get(i));
4095 boolean wasShowLights = mLights.remove(key);
4099 mLights.add(key);
4684 mLights.remove(canceledKey);
5010 while (ledNotification == null && !mLights.isEmpty()) {
5011 final String owner = mLights.get(mLights
[all...]

Completed in 1448 milliseconds