Home
last modified time | relevance | path

Searched refs:syncId (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Calendar/src/com/android/calendar/alerts/
DGlobalDismissManager.java57 private GlobalDismissId(String accountName, String syncId, long startTime) { in GlobalDismissId() argument
61 } else if (syncId == null) { in GlobalDismissId()
65 mSyncId = syncId; in GlobalDismissId()
307 String syncId = cursor.getString(sync_id_idx); in syncSenderDismissCache() local
308 if (syncId != null) { in syncSenderDismissCache()
312 data.putString(SYNC_ID, syncId); in syncSenderDismissCache()
316 cnb.send(accountName, syncId + ":" + startTime, data); in syncSenderDismissCache()
/packages/apps/Calendar/src/com/android/calendar/
DGoogleCalendarUriIntentFilter.java148 final String syncId = eidParts[0]; in onCreate() local
150 if (debug) Log.d(TAG, "eidParts=" + syncId + "/" + ownerAccount); in onCreate()
151 final String selection = Events._SYNC_ID + " LIKE \"%" + syncId + "\" AND " in onCreate()
161 Log.i(TAG, "NOTE: found no matches on event with id='" + syncId + "'"); in onCreate()
165 + " matches on event with id='" + syncId + "'"); in onCreate()
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
DCalendarInstancesHelper.java242 String syncId = entries.getString(syncIdColumn); in performInstanceExpansion() local
258 String syncIdKey = CalendarInstancesHelper.getSyncIdKey(syncId, calendarId); in performInstanceExpansion()
392 + syncId); in performInstanceExpansion()
876 static String getSyncIdKey(String syncId, long calendarId) { in getSyncIdKey() argument
877 return calendarId + ":" + syncId; in getSyncIdKey()
DCalendarProvider2.java2056 String syncId = values.getAsString(Events._SYNC_ID); in backfillExceptionOriginalIds() local
2061 if (TextUtils.isEmpty(syncId) || TextUtils.isEmpty(calendarId) || in backfillExceptionOriginalIds()
2071 new String[] { syncId, calendarId }); in backfillExceptionOriginalIds()
3220 String syncId = cursor.getString(EVENTS_SYNC_ID_INDEX); in deleteEventInternal() local
3221 boolean emptySyncId = TextUtils.isEmpty(syncId); in deleteEventInternal()
3642 private boolean doesEventExistForSyncId(String syncId) { in doesEventExistForSyncId() argument
3643 if (syncId == null) { in doesEventExistForSyncId()
3645 Log.w(TAG, "SyncID cannot be null: " + syncId); in doesEventExistForSyncId()
3650 new String[] { syncId }); in doesEventExistForSyncId()
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
DCalendarProvider2Test.java1222 String syncId = String.format("%d", recur.mSyncId); in eventInfoToContentValues() local
1223 m.put(Events.ORIGINAL_SYNC_ID, syncId); in eventInfoToContentValues()