Searched defs:highPriority (Results 1 - 3 of 3) sorted by relevance
/packages/services/BuiltInPrintService/src/com/android/bips/ipp/ |
H A D | CapabilitiesCache.java | 103 * @param highPriority if true, perform this query before others 107 public void request(DiscoveredPrinter printer, boolean highPriority, argument 109 if (DEBUG) Log.d(TAG, "request() printer=" + printer + " high=" + highPriority); 132 if (highPriority) { 133 request.highPriority = true; 193 } else if (found == null || (!found.highPriority && request.highPriority)) { 194 // First outstanding, or higher highPriority request 209 boolean highPriority = true; field in class:CapabilitiesCache.Request
|
/packages/apps/Calendar/tests/src/com/android/calendar/alerts/ |
H A D | AlertServiceTest.java | 272 public void expectTestNotification(int notificationId, int alertId, int highPriority) { argument 274 highPriority); 736 ArrayList<NotificationInfo> highPriority = new ArrayList<NotificationInfo>(); 740 AlertService.processQuery(at.getAlertCursor(), mContext, currentTime, highPriority, 745 assertEquals(1, highPriority.size()); 746 assertEquals(acceptedEventId, highPriority.get(0).eventId); 747 assertEquals(acceptedStartTime, highPriority.get(0).startMillis); 748 assertEquals(acceptedEndTime, highPriority.get(0).endMillis); 749 assertTrue(highPriority.get(0).allDay); 763 ArrayList<NotificationInfo> highPriority [all...] |
/packages/apps/Calendar/src/com/android/calendar/alerts/ |
H A D | AlertService.java | 863 Context context, boolean highPriority, NotificationPrefs prefs, 866 if (highPriority) { 895 + (highPriority ? ", high-priority" : "")); 862 postNotification(NotificationInfo info, String summaryText, Context context, boolean highPriority, NotificationPrefs prefs, NotificationMgr notificationMgr, int notificationId) argument
|
Completed in 887 milliseconds