Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/service/notification/
DConditionProviderService.java56 private INotificationManager mNoMan; field in ConditionProviderService
71 if (mNoMan == null) { in getNotificationInterface()
72 mNoMan = INotificationManager.Stub.asInterface( in getNotificationInterface()
75 return mNoMan; in getNotificationInterface()
DNotificationListenerService.java141 private INotificationManager mNoMan; field in NotificationListenerService
268 if (mNoMan == null) { in getNotificationInterface()
269 mNoMan = INotificationManager.Stub.asInterface( in getNotificationInterface()
272 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()
126 mNoMan.requestZenModeConditions(mListener, request ? Condition.FLAG_RELEVANT_NOW : 0); in requestConditions()
230 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/power/
DPowerNotificationWarnings.java76 private final NotificationManager mNoMan; field in PowerNotificationWarnings
98 mNoMan = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE); in PowerNotificationWarnings()
147 mNoMan.cancelAsUser(TAG_NOTIFICATION, R.id.notification_power, UserHandle.ALL); in updateNotification()
168 mNoMan.notifyAsUser(TAG_NOTIFICATION, R.id.notification_power, n, UserHandle.ALL); in showInvalidChargerNotification()
206 mNoMan.notifyAsUser(TAG_NOTIFICATION, R.id.notification_power, n, UserHandle.ALL); in showWarningNotification()
223 mNoMan.notifyAsUser(TAG_NOTIFICATION, R.id.notification_power, nb.build(), UserHandle.ALL); in showSaverNotification()
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
DVolumeDialogController.java87 private final NotificationManager mNoMan; field in VolumeDialogController
115 mNoMan = (NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE); in VolumeDialogController()
129 return mNoMan.getZenModeConfig(); in getZenModeConfig()
349 updateEffectsSuppressorW(mNoMan.getEffectsSuppressor());
486 mNoMan.setZenMode(mState.zenMode, condition != null ? condition.id : null, TAG); in onSetExitConditionW()
491 mNoMan.setZenMode(mode, null, TAG); in onSetZenModeW()
819 changed = updateEffectsSuppressorW(mNoMan.getEffectsSuppressor()); in onReceive()