Home | History | Annotate | Download | only in provider

Lines Matching defs:eventId

765      * the event with the given eventId. Both apps and sync adapters may write
797 * @param eventId The id of the event to retrieve attendees for
801 public static final Cursor query(ContentResolver cr, long eventId, String[] projection) {
802 String[] attArgs = {Long.toString(eventId)};
1245 final long eventId = cursor.getLong(cursor.getColumnIndexOrThrow(Events._ID));
1247 cv.put(Events._ID, eventId);
1311 new String[] { Long.toString(eventId) } /* selectionArgs */,
1316 new String[] { Long.toString(eventId) } /* selectionArgs */,
1333 new String[] { Long.toString(eventId) } /* selectionArgs */,
1338 new String[] { Long.toString(eventId) } /* selectionArgs */,
1363 new String[] { Long.toString(eventId) } /* selectionArgs */,
1368 new String[] { Long.toString(eventId) } /* selectionArgs */,
1951 * the event with the given eventId. Both apps and sync adapters may write
1975 * @param eventId The id of the event to retrieve reminders for
1979 public static final Cursor query(ContentResolver cr, long eventId, String[] projection) {
1980 String[] remArgs = {Long.toString(eventId)};
2128 public static final Uri insert(ContentResolver cr, long eventId,
2131 values.put(CalendarAlerts.EVENT_ID, eventId);
2271 * @param eventId the event id to match
2278 public static final boolean alarmExists(ContentResolver cr, long eventId,
2285 Long.toString(eventId), Long.toString(begin), Long.toString(alarmTime)