Searched defs:busyStatus (Results 1 - 2 of 2) sorted by relevance
/packages/apps/Exchange/src/com/android/exchange/adapter/ |
H A D | CalendarSyncParser.java | 351 int busyStatus = CalendarUtilities.BUSY_STATUS_TENTATIVE; 458 exceptionsParser(ops, cv, attendeeValues, reminderMins, busyStatus, 508 busyStatus = getValueInt(); 530 cv.put(Events.AVAILABILITY, CalendarUtilities.availabilityFromBusyStatus(busyStatus)); 541 // If the user is an attendee, set the attendee status using busyStatus (note that the 542 // busyStatus is inherited from the parent unless it's specified in the exception) 591 CalendarUtilities.attendeeStatusFromBusyStatus(busyStatus); 758 ArrayList<ContentValues> attendeeValues, int reminderMins, int busyStatus, 831 busyStatus = getValueInt(); 871 CalendarUtilities.attendeeStatusFromBusyStatus(busyStatus)); 757 exceptionParser(CalendarOperations ops, ContentValues parentCv, ArrayList<ContentValues> attendeeValues, int reminderMins, int busyStatus, long startTime, long endTime) argument 908 exceptionsParser(CalendarOperations ops, ContentValues cv, ArrayList<ContentValues> attendeeValues, int reminderMins, int busyStatus, long startTime, long endTime) argument [all...] |
/packages/apps/Exchange/src/com/android/exchange/utility/ |
H A D | CalendarUtilities.java | 1493 * @param busyStatus the busy status, from EAS 1496 static public int attendeeStatusFromBusyStatus(int busyStatus) { argument 1498 switch (busyStatus) { 1516 * @param busyStatus the response status, from EAS 1546 int busyStatus; 1551 busyStatus = BUSY_STATUS_FREE; 1554 busyStatus = BUSY_STATUS_TENTATIVE; 1558 busyStatus = BUSY_STATUS_BUSY; 1561 return busyStatus; 1570 int busyStatus; 1591 availabilityFromBusyStatus(int busyStatus) argument [all...] |
Completed in 66 milliseconds