Home
last modified time | relevance | path

Searched refs:notif (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/location/java/com/android/internal/location/
DGpsNetInitiatedHandler.java252 public void handleNiNotification(GpsNiNotification notif) { in handleNiNotification() argument
254 + " notificationId: " + notif.notificationId in handleNiNotification()
255 + " requestorId: " + notif.requestorId in handleNiNotification()
256 + " text: " + notif.text in handleNiNotification()
261 handleNiInEs(notif); in handleNiNotification()
263 handleNi(notif); in handleNiNotification()
280 private void handleNi(GpsNiNotification notif) { in handleNi() argument
282 + " needNotify: " + notif.needNotify in handleNi()
283 + " needVerify: " + notif.needVerify in handleNi()
284 + " privacyOverride: " + notif.privacyOverride in handleNi()
[all …]
/frameworks/support/compat/jellybean/android/support/v4/app/
DNotificationCompatJellybean.java144 Notification notif = b.build(); in build() local
147 Bundle extras = getExtras(notif); in build()
158 getExtras(notif).putSparseParcelableArray(EXTRA_ACTION_EXTRAS, actionExtrasMap); in build()
161 notif.contentView = mContentView; in build()
164 notif.bigContentView = mBigContentView; in build()
166 return notif; in build()
228 public static Bundle getExtras(Notification notif) { in getExtras() argument
244 Bundle extras = (Bundle) sExtrasField.get(notif); in getExtras()
247 sExtrasField.set(notif, extras); in getExtras()
297 public static int getActionCount(Notification notif) { in getActionCount() argument
[all …]
/frameworks/support/recommendation/src/android/support/app/recommendation/
DRecommendationExtender.java83 public RecommendationExtender(Notification notif) { in RecommendationExtender() argument
84 Bundle contentBundle = notif.extras == null ? in RecommendationExtender()
85 null : notif.extras.getBundle(EXTRA_CONTENT_INFO_EXTENDER); in RecommendationExtender()
DContentRecommendation.java1144 Notification notif = builder.build(); in getNotificationObject() local
1145 return notif; in getNotificationObject()
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
DStorageNotification.java292 final Notification notif; in onPublicVolumeStateChangedInternal() local
295 notif = onVolumeUnmounted(vol); in onPublicVolumeStateChangedInternal()
298 notif = onVolumeChecking(vol); in onPublicVolumeStateChangedInternal()
302 notif = onVolumeMounted(vol); in onPublicVolumeStateChangedInternal()
305 notif = onVolumeFormatting(vol); in onPublicVolumeStateChangedInternal()
308 notif = onVolumeEjecting(vol); in onPublicVolumeStateChangedInternal()
311 notif = onVolumeUnmountable(vol); in onPublicVolumeStateChangedInternal()
314 notif = onVolumeRemoved(vol); in onPublicVolumeStateChangedInternal()
317 notif = onVolumeBadRemoval(vol); in onPublicVolumeStateChangedInternal()
320 notif = null; in onPublicVolumeStateChangedInternal()
[all …]
/frameworks/support/compat/kitkat/android/support/v4/app/
DNotificationCompatKitKat.java132 public static NotificationCompatBase.Action getAction(Notification notif, in getAction() argument
135 Notification.Action action = notif.actions[actionIndex]; in getAction()
137 SparseArray<Bundle> actionExtrasMap = notif.extras.getSparseParcelableArray( in getAction()
/frameworks/support/compat/java/android/support/v4/app/
DNotificationManagerCompat.java590 final Notification notif; field in NotificationManagerCompat.NotifyTask
592 NotifyTask(String packageName, int id, String tag, Notification notif) { in NotifyTask() argument
596 this.notif = notif; in NotifyTask()
601 service.notify(packageName, id, tag, notif); in send()
/frameworks/base/services/core/java/com/android/server/am/
DPreBootBroadcaster.java149 final Notification notif =
163 notifManager.notifyAsUser(TAG, SystemMessage.NOTE_SYSTEM_UPGRADING, notif,
/frameworks/support/compat/api20/android/support/v4/app/
DNotificationCompatApi20.java168 public static NotificationCompatBase.Action getAction(Notification notif, in getAction() argument
171 … return getActionCompatFromAction(notif.actions[actionIndex], actionFactory, remoteInputFactory); in getAction()