Home
last modified time | relevance | path

Searched refs:calendarId (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/services/core/java/com/android/server/notification/
DCalendarTracker.java135 final long calendarId = cursor.getLong(7); in checkEvent() local
137 final boolean canAccessCal = calendars.contains(calendarId); in checkEvent()
142 availabilityToString(availability), eventId, name, owner, calendarId, in checkEvent()
147 && ((filter.calName == null && filter.calendarId == null) in checkEvent()
148 || (Objects.equals(filter.calendarId, calendarId)) in checkEvent()
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DZenModeConfigTest.java136 oldEvent.calendarId = null; // old events will have null ids in testParseOldEvent()
148 event.calendarId = 12345L; in testParseNewEvent()
/frameworks/base/core/java/android/service/notification/
DZenModeConfig.java1476 .appendQueryParameter("calendarId", event.calendarId != null in toEventConditionId()
1477 ? event.calendarId.toString() : "") in toEventConditionId()
1499 rt.calendarId = tryParseLong(conditionId.getQueryParameter("calendarId"), null); in tryParseEventConditionId()
1515 public Long calendarId; // Calendars._ID, or null if restored from < Q calendar field in ZenModeConfig.EventInfo
1520 return Objects.hash(userId, calName, calendarId, reply); in hashCode()
1530 && Objects.equals(calendarId, other.calendarId); in equals()
1538 rt.calendarId = calendarId; in copy()
/frameworks/base/core/java/android/provider/
DCalendarContract.java598 final long calendarId = cursor.getLong(cursor.getColumnIndexOrThrow(_ID)); in getEntityAndIncrementCursor() local
602 cv.put(_ID, calendarId); in getEntityAndIncrementCursor()