Home
last modified time | relevance | path

Searched refs:mNoMan (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/power/
DPowerNotificationWarnings.java78 private final NotificationManager mNoMan; field in PowerNotificationWarnings
100 mNoMan = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE); in PowerNotificationWarnings()
138 mNoMan.cancelAsUser(TAG_BATTERY, SystemMessage.NOTE_BAD_CHARGER, UserHandle.ALL); in updateNotification()
139 mNoMan.cancelAsUser(TAG_BATTERY, SystemMessage.NOTE_POWER_LOW, UserHandle.ALL); in updateNotification()
158 mNoMan.cancelAsUser(TAG_BATTERY, SystemMessage.NOTE_POWER_LOW, UserHandle.ALL); in showInvalidChargerNotification()
159 mNoMan.notifyAsUser(TAG_BATTERY, SystemMessage.NOTE_BAD_CHARGER, n, UserHandle.ALL); in showInvalidChargerNotification()
190 mNoMan.cancelAsUser(TAG_BATTERY, SystemMessage.NOTE_BAD_CHARGER, UserHandle.ALL); in showWarningNotification()
191 mNoMan.notifyAsUser(TAG_BATTERY, SystemMessage.NOTE_POWER_LOW, n, UserHandle.ALL); in showWarningNotification()
227 mNoMan.cancelAsUser(TAG_TEMPERATURE, SystemMessage.NOTE_HIGH_TEMP, UserHandle.ALL); in dismissTemperatureWarningInternal()
250 mNoMan.notifyAsUser(TAG_TEMPERATURE, SystemMessage.NOTE_HIGH_TEMP, n, UserHandle.ALL); in showTemperatureWarning()
/frameworks/base/core/java/android/service/notification/
DConditionProviderService.java66 private INotificationManager mNoMan; field in ConditionProviderService
121 if (mNoMan == null) { in getNotificationInterface()
122 mNoMan = INotificationManager.Stub.asInterface( in getNotificationInterface()
125 return mNoMan; in getNotificationInterface()
DNotificationListenerService.java188 private INotificationManager mNoMan; field in NotificationListenerService
336 if (mNoMan == null) { in getNotificationInterface()
337 mNoMan = INotificationManager.Stub.asInterface( in getNotificationInterface()
340 return mNoMan; in getNotificationInterface()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DZenModeControllerImpl.java57 private final NotificationManager mNoMan; field in ZenModeControllerImpl
82 mNoMan = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE); in ZenModeControllerImpl()
83 mConfig = mNoMan.getZenModeConfig(); in ZenModeControllerImpl()
115 mNoMan.setZenMode(zen, conditionId, reason); in setZen()
221 final ZenModeConfig config = mNoMan.getZenModeConfig(); in updateZenModeConfig()
/frameworks/base/tests/OneMedia/src/com/android/onemedia/
DNotificationHelper.java144 NotificationManager mNoMan = null; field in NotificationHelper
147 if (mNoMan == null) { in updateNotification()
148 mNoMan = (NotificationManager) mService.getSystemService(Context.NOTIFICATION_SERVICE); in updateNotification()
151 mNoMan.cancel(NOTIFICATION_ID); in updateNotification()
155 mNoMan.cancel(NOTIFICATION_ID); in updateNotification()
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
DVolumeDialogController.java86 private final NotificationManager mNoMan; field in VolumeDialogController
114 mNoMan = (NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE); in VolumeDialogController()
345 updateEffectsSuppressorW(mNoMan.getEffectsSuppressor());
474 mNoMan.setZenMode(mState.zenMode, condition != null ? condition.id : null, TAG); in onSetExitConditionW()
479 mNoMan.setZenMode(mode, null, TAG); in onSetZenModeW()
805 changed = updateEffectsSuppressorW(mNoMan.getEffectsSuppressor()); in onReceive()