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

1 2

  /frameworks/base/location/java/com/android/internal/location/
GpsNetInitiatedHandler.java 256 public void handleNiNotification(GpsNiNotification notif) {
258 + " notificationId: " + notif.notificationId
259 + " requestorId: " + notif.requestorId
260 + " text: " + notif.text
265 handleNiInEs(notif);
267 handleNi(notif);
284 private void handleNi(GpsNiNotification notif) {
286 + " needNotify: " + notif.needNotify
287 + " needVerify: " + notif.needVerify
288 + " privacyOverride: " + notif.privacyOverrid
    [all...]
  /hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
loc_eng_ni.cpp 113 const GpsNiNotification *notif,
130 notif->ni_type);
140 ((GpsNiNotification*)notif)->notification_id = loc_eng_ni_data_p->reqID;
142 if (notif->notify_flags == GPS_NI_PRIVACY_OVERRIDE)
148 LOC_LOGI("Notification: notif_type: %d, timeout: %d, default_resp: %d", notif->ni_type, notif->timeout, notif->default_response);
149 LOC_LOGI(" requestor_id: %s (encoding: %d)", notif->requestor_id, notif->requestor_id_encoding);
150 LOC_LOGI(" text: %s text (encoding: %d)", notif->text, notif->text_encoding)
    [all...]
LocEngAdapter.cpp 218 bool LocEngAdapter::requestNiNotify(GpsNiNotification &notif, const void* data)
221 notif.size = sizeof(notif);
222 notif.timeout = LOC_NI_NO_RESPONSE_TIME;
224 sendMsg(new LocEngRequestNi(mOwner, notif, data));
loc_eng.h 232 const GpsNiNotification *notif,
  /frameworks/support/v4/kitkat/android/support/v4/app/
NotificationCompatKitKat.java 118 public static Bundle getExtras(Notification notif) {
119 return notif.extras;
122 public static int getActionCount(Notification notif) {
123 return notif.actions != null ? notif.actions.length : 0;
126 public static NotificationCompatBase.Action getAction(Notification notif,
129 Notification.Action action = notif.actions[actionIndex];
131 SparseArray<Bundle> actionExtrasMap = notif.extras.getSparseParcelableArray(
140 public static boolean getLocalOnly(Notification notif) {
141 return notif.extras.getBoolean(NotificationCompatJellybean.EXTRA_LOCAL_ONLY)
    [all...]
  /hardware/qcom/gps/loc_api/libloc_api_50001/
loc_eng_ni.cpp 113 const GpsNiNotification *notif,
126 if (notif->ni_type == GPS_NI_TYPE_EMERGENCY_SUPL) {
129 notif->ni_type);
140 notif->ni_type);
157 ((GpsNiNotification*)notif)->notification_id = pSession->reqID;
159 if (notif->notify_flags == GPS_NI_PRIVACY_OVERRIDE)
165 LOC_LOGI("Notification: notif_type: %d, timeout: %d, default_resp: %d", notif->ni_type, notif->timeout, notif->default_response);
166 LOC_LOGI(" requestor_id: %s (encoding: %d)", notif->requestor_id, notif->requestor_id_encoding)
    [all...]
LocEngAdapter.cpp 302 bool LocEngAdapter::requestNiNotify(GpsNiNotification &notif, const void* data)
305 notif.size = sizeof(notif);
306 notif.timeout = LOC_NI_NO_RESPONSE_TIME;
308 sendMsg(new LocEngRequestNi(mOwner, notif, data));
loc_eng.h 246 const GpsNiNotification *notif,
loc_eng_msg.h 260 GpsNiNotification &notif,
  /hardware/qcom/gps/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/src/
LocApiRpc.cpp 1200 GpsNiNotification notif = {0}; local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
IncomingMessage.java 125 Notification notif = new Notification(R.drawable.stat_sample, tickerText, local
129 notif.setLatestEventInfo(this, from, message, contentIntent);
134 notif.defaults = Notification.DEFAULT_ALL;
141 nm.notify(R.string.imcoming_message_ticker_text, notif);
178 Notification notif = new Notification(R.drawable.stat_sample, tickerText, local
182 notif.setLatestEventInfo(this, from, message, contentIntent);
187 notif.defaults = Notification.DEFAULT_ALL;
194 nm.notify(R.string.imcoming_message_ticker_text, notif);
StatusBarNotifications.java 218 Notification notif = new Notification(); local
221 notif.contentIntent = makeMoodIntent(moodId);
225 notif.tickerText = text;
228 notif.icon = moodId;
234 notif.contentView = contentView;
238 mNotificationManager.notify(MOOD_NOTIFICATIONS, notif);
  /frameworks/support/tests/java/android/support/v4/app/
NotificationCompatWearableExtenderTest.java 57 Notification notif = new NotificationCompat.Builder(getContext()) local
61 assertExtendersEqual(new Notification.WearableExtender(notif), compatExtender);
62 assertExtendersEqual(new Notification.WearableExtender(notif),
63 new NotificationCompat.WearableExtender(notif));
69 Notification notif = new Notification.Builder(getContext()) local
73 assertExtendersEqual(realExtender, new NotificationCompat.WearableExtender(notif));
74 assertExtendersEqual(new Notification.WearableExtender(notif),
75 new NotificationCompat.WearableExtender(notif));
115 Notification notif = new NotificationCompat.Builder(getContext()) local
117 assertExtendersEqual(new Notification.WearableExtender(notif), compatExtender)
160 Notification notif = new Notification.Builder(getContext()) local
    [all...]
  /frameworks/support/v4/api20/android/support/v4/app/
NotificationCompatApi20.java 115 public static NotificationCompatBase.Action getAction(Notification notif,
118 return getActionCompatFromAction(notif.actions[actionIndex], actionFactory, remoteInputFactory);
183 public static boolean getLocalOnly(Notification notif) {
184 return (notif.flags & Notification.FLAG_LOCAL_ONLY) != 0;
187 public static String getGroup(Notification notif) {
188 return notif.getGroup();
191 public static boolean isGroupSummary(Notification notif) {
192 return (notif.flags & Notification.FLAG_GROUP_SUMMARY) != 0;
195 public static String getSortKey(Notification notif) {
196 return notif.getSortKey()
    [all...]
  /frameworks/support/v4/jellybean/android/support/v4/app/
NotificationCompatJellybean.java 133 Notification notif = b.build(); local
136 Bundle extras = getExtras(notif);
147 getExtras(notif).putSparseParcelableArray(EXTRA_ACTION_EXTRAS, actionExtrasMap);
149 return notif;
211 public static Bundle getExtras(Notification notif) {
227 Bundle extras = (Bundle) sExtrasField.get(notif);
230 sExtrasField.set(notif, extras);
267 public static int getActionCount(Notification notif) {
269 Object[] actionObjects = getActionObjectsLocked(notif);
274 public static NotificationCompatBase.Action getAction(Notification notif, int actionIndex
    [all...]
  /developers/samples/android/wearable/wear/Notifications/Wearable/src/main/java/com/example/android/notifications/
MainActivity.java 64 Notification notif = preset.buildNotification(this); local
66 .notify(SAMPLE_NOTIFICATION_ID, notif);
  /developers/samples/android/wearable/wear/Timer/Wearable/src/main/java/com/example/android/timer/
TimerNotificationService.java 106 Notification notif = new Notification.Builder(this) local
116 notifyMgr.notify(Constants.NOTIFICATION_TIMER_EXPIRED, notif);
  /development/samples/wearable/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/wearable/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);
  /frameworks/support/v4/java/android/support/v4/app/
NotificationCompat.java 743 public String getCategory(Notification notif) {
744 return NotificationCompatApi21.getCategory(notif);
    [all...]
NotificationManagerCompat.java 565 final Notification notif; field in class:NotificationManagerCompat.NotifyTask
567 public NotifyTask(String packageName, int id, String tag, Notification notif) {
571 this.notif = notif;
576 service.notify(packageName, id, tag, notif);
  /frameworks/support/v4/api21/android/support/v4/app/
NotificationCompatApi21.java 113 public static String getCategory(Notification notif) {
114 return notif.category;
  /external/ppp/pppd/
main.c     [all...]
  /hardware/qcom/gps/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/rpc_inc/
LocApiRpc.h 55 static int NIEventFillVerfiyType(GpsNiNotification &notif,
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadNotifier.java 238 final Notification notif; local
265 notif = builder.build();
290 notif = inboxStyle.build();
293 mNotifManager.notify(tag, 0, notif);

Completed in 519 milliseconds

1 2