HomeSort by relevance Sort by last modified time
    Searched defs:notif (Results 1 - 25 of 37) sorted by null

1 2

  /packages/apps/Launcher3/src/com/android/launcher3/notification/
NotificationKeyData.java 44 Notification notif = sbn.getNotification(); local
45 return new NotificationKeyData(sbn.getKey(), notif.getShortcutId(), notif.number);
  /developers/build/prebuilts/gradle/Timer/Wearable/src/main/java/com/example/android/wearable/timer/
TimerNotificationService.java 106 Notification notif = new Notification.Builder(this) local
116 notifyMgr.notify(Constants.NOTIFICATION_TIMER_EXPIRED, notif);
  /developers/samples/android/wearable/wear/Timer/Wearable/src/main/java/com/example/android/wearable/timer/
TimerNotificationService.java 106 Notification notif = new Notification.Builder(this) local
116 notifyMgr.notify(Constants.NOTIFICATION_TIMER_EXPIRED, notif);
  /development/samples/browseable/Timer/src/com.example.android.wearable.timer/
TimerNotificationService.java 106 Notification notif = new Notification.Builder(this) local
116 notifyMgr.notify(Constants.NOTIFICATION_TIMER_EXPIRED, notif);
  /developers/build/prebuilts/gradle/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/
MainActivity.java 64 Notification notif = preset.buildNotification(this); local
66 .notify(SAMPLE_NOTIFICATION_ID, notif);
  /developers/samples/android/wearable/wear/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/
MainActivity.java 64 Notification notif = preset.buildNotification(this); local
66 .notify(SAMPLE_NOTIFICATION_ID, notif);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
StatusBarNotifications.java 223 Notification notif = new Notification(); local
226 notif.contentIntent = makeMoodIntent(moodId);
230 notif.tickerText = text;
233 notif.icon = moodId;
239 notif.contentView = contentView;
243 mNotificationManager.notify(MOOD_NOTIFICATIONS, notif);
  /development/samples/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/
MainActivity.java 64 Notification notif = preset.buildNotification(this); local
66 .notify(SAMPLE_NOTIFICATION_ID, notif);
  /external/ltp/testcases/kernel/containers/pidns/
pidns30.c 166 struct sigevent notif; local
193 notif.sigev_notify = SIGEV_SIGNAL;
194 notif.sigev_signo = SIGUSR1;
195 notif.sigev_value.sival_int = mqd;
196 if (ltp_syscall(__NR_mq_notify, mqd, &notif) == -1) {
pidns31.c 255 struct sigevent notif; local
287 notif.sigev_notify = SIGEV_SIGNAL;
288 notif.sigev_signo = SIGUSR1;
291 notif.sigev_value.sival_ptr = &info;
292 if (ltp_syscall(__NR_mq_notify, mqd, &notif) == (mqd_t) -1) {
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadNotifier.java 116 for (StatusBarNotification notif : notifs) {
117 mActiveNotifs.put(notif.getTag(), notif.getPostTime());
326 final Notification notif; local
354 notif = builder.build();
380 notif = inboxStyle.build();
383 mNotifManager.notify(tag, 0, notif);
  /system/bt/stack/gatt/
gatt_api.cc 479 tGATT_VALUE notif; local
496 notif.handle = attr_handle;
497 notif.len = val_len;
498 memcpy(notif.value, p_val, val_len);
499 notif.auth_req = GATT_AUTH_REQ_NONE;
503 gatt_sr_msg.attr_value = notif;
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
StorageNotification.java 292 final Notification notif; local
295 notif = onVolumeUnmounted(vol);
298 notif = onVolumeChecking(vol);
302 notif = onVolumeMounted(vol);
305 notif = onVolumeFormatting(vol);
308 notif = onVolumeEjecting(vol);
311 notif = onVolumeUnmountable(vol);
314 notif = onVolumeRemoved(vol);
317 notif = onVolumeBadRemoval(vol);
320 notif = null
326 notif, UserHandle.of(vol.getMountUserId())); local
    [all...]
  /hardware/qcom/gps/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/src/
LocApiRpc.cpp 1200 GpsNiNotification notif = {0}; local
    [all...]
  /hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/src/
LocApiRpc.cpp 1200 GpsNiNotification notif = {0}; local
    [all...]
  /hardware/qcom/gps/msm8909/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/src/
LocApiRpc.cpp 1204 GpsNiNotification notif = {0}; local
    [all...]
  /hardware/qcom/gps/msm8994/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/src/
LocApiRpc.cpp 1200 GpsNiNotification notif = {0}; local
    [all...]
  /hardware/qcom/gps/msm8996/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/src/
LocApiRpc.cpp 1204 GpsNiNotification notif = {0}; local
    [all...]
  /packages/services/Telephony/src/com/android/phone/
NotificationMgr.java 550 final Notification notif = local
553 null /* tag */, DATA_DISCONNECTED_ROAMING_NOTIFICATION, notif, UserHandle.ALL);
  /frameworks/support/compat/src/androidTest/java/androidx/core/app/
NotificationCompatTest.java 192 Notification notif = new Notification.Builder(mContext) local
195 NotificationCompat.Action action = NotificationCompat.getAction(notif, 0);
    [all...]
  /frameworks/support/compat/src/main/java/androidx/core/app/
NotificationManagerCompat.java 594 final Notification notif; field in class:NotificationManagerCompat.NotifyTask
596 NotifyTask(String packageName, int id, String tag, Notification notif) {
600 this.notif = notif;
605 service.notify(packageName, id, tag, notif);
  /frameworks/support/recommendation/src/main/java/androidx/recommendation/app/
ContentRecommendation.java 1145 Notification notif = builder.build(); local
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/
NetworkPolicyManagerServiceTest.java 1174 final ArgumentCaptor<Notification> notif = ArgumentCaptor.forClass(Notification.class); local
1200 final ArgumentCaptor<Notification> notif = ArgumentCaptor.forClass(Notification.class); local
    [all...]
  /frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
NotificationManagerServiceTest.java 858 final NotificationRecord notif = generateNotificationRecord( local
872 final NotificationRecord notif = generateNotificationRecord( local
1072 final NotificationRecord notif = generateNotificationRecord( local
1124 final NotificationRecord notif = generateNotificationRecord( local
1138 final NotificationRecord notif = generateNotificationRecord( local
    [all...]
  /developers/build/prebuilts/gradle/SwipeRefreshListFragment/Application/libs/
android-support-v4.jar 

Completed in 1017 milliseconds

1 2