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.java135 private boolean mLights; field in class:NotificationChannel
191 mLights = in.readByte() != 0;
236 dest.writeByte(mLights ? (byte) 1 : (byte) 0);
362 this.mLights = lights;
489 return mLights;
782 if (mLights != that.mLights) return false;
818 result = 31 * result + (mLights ? 1 : 0);
841 ", mLights=" + mLights
[all...]
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationManagerService.java325 ArrayList<String> mLights = new ArrayList<>(); field in class:NotificationManagerService
725 mLights.clear();
2988 N = mLights.size();
2997 pw.println(mLights.get(i));
3758 boolean wasShowLights = mLights.remove(key);
3762 mLights.add(key);
4303 mLights.remove(canceledKey);
4628 while (ledNotification == null && !mLights.isEmpty()) {
4629 final String owner = mLights.get(mLights
[all...]

Completed in 83 milliseconds