HomeSort by relevance Sort by last modified time
    Searched defs:sbn (Results 1 - 3 of 3) sorted by null

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nls/
MockListener.java 141 public void onNotificationPosted(StatusBarNotification sbn) {
142 Log.d(TAG, "posted: " + sbn.getTag());
143 mPosted.add(sbn.getTag());
146 payload.put(JSON_TAG, sbn.getTag());
147 payload.put(JSON_ID, sbn.getId());
148 payload.put(JSON_PACKAGE, sbn.getPackageName());
149 payload.put(JSON_WHEN, sbn.getNotification().when);
150 payload.put(JSON_ICON, sbn.getNotification().icon);
151 payload.put(JSON_FLAGS, sbn.getNotification().flags);
159 public void onNotificationRemoved(StatusBarNotification sbn) {
    [all...]
  /frameworks/base/services/java/com/android/server/
NotificationManagerService.java 232 boolean enabledAndUserMatches(StatusBarNotification sbn) {
233 final int nid = sbn.getUserId();
241 public void notifyPostedIfUserMatch(StatusBarNotification sbn) {
242 if (!enabledAndUserMatches(sbn)) {
246 listener.onNotificationPosted(sbn);
252 public void notifyRemovedIfUserMatch(StatusBarNotification sbn) {
253 if (!enabledAndUserMatches(sbn)) return;
255 listener.onNotificationRemoved(sbn);
515 tmp[i] = mNotificationList.get(i).sbn;
825 final StatusBarNotification sbn = n.sbn.clone(); local
916 StatusBarNotification sbn = mNotificationList.get(i).sbn; local
929 final StatusBarNotification sbn; field in class:NotificationRecord
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBar.java 1374 final StatusBarNotification sbn = mInterruptingNotificationEntry.notification; local
    [all...]

Completed in 61 milliseconds