Searched refs:outCv (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/services/core/java/com/android/server/notification/ |
D | NotificationUsageStats.java | 1310 private static void putNotificationIdentifiers(NotificationRecord r, ContentValues outCv) { in putNotificationIdentifiers() argument 1311 outCv.put(COL_KEY, r.sbn.getKey()); in putNotificationIdentifiers() 1312 outCv.put(COL_PKG, r.sbn.getPackageName()); in putNotificationIdentifiers() 1315 private static void putNotificationDetails(NotificationRecord r, ContentValues outCv) { in putNotificationDetails() argument 1316 outCv.put(COL_NOTIFICATION_ID, r.sbn.getId()); in putNotificationDetails() 1318 outCv.put(COL_TAG, r.sbn.getTag()); in putNotificationDetails() 1320 outCv.put(COL_WHEN_MS, r.sbn.getPostTime()); in putNotificationDetails() 1321 outCv.put(COL_FLAGS, r.getNotification().flags); in putNotificationDetails() 1325 outCv.put(COL_IMPORTANCE_REQ, before); in putNotificationDetails() 1326 outCv.put(COL_IMPORTANCE_FINAL, after); in putNotificationDetails() [all …]
|