/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
D | CalendarProvider2.java | 60 import android.provider.CalendarContract.Events; 118 new String[] {Events._ID}; 121 Events._SYNC_ID, 122 Events.RRULE, 123 Events.RDATE, 124 Events.ORIGINAL_ID, 125 Events.ORIGINAL_SYNC_ID, 175 Events._ID, 176 Events.DTSTART, 177 Events.DTEND, [all …]
|
D | CalendarDatabaseHelper.java | 35 import android.provider.CalendarContract.Events; 83 Events._SYNC_ID + "," + 84 Events.CALENDAR_ID + "," + 85 Events.TITLE + "," + 86 Events.EVENT_LOCATION + "," + 87 Events.DESCRIPTION + "," + 88 Events.EVENT_COLOR + "," + 89 Events.EVENT_COLOR_KEY + "," + 90 Events.STATUS + "," + 91 Events.SELF_ATTENDEE_STATUS + "," + [all …]
|
D | CalendarInstancesHelper.java | 34 import android.provider.CalendarContract.Events; 66 "((" + Events.DTSTART + " <= ? AND " 67 + "(" + Events.LAST_DATE + " IS NULL OR " + Events.LAST_DATE + " >= ?)) OR " 68 + "(" + Events.ORIGINAL_INSTANCE_TIME + " IS NOT NULL AND " 69 + Events.ORIGINAL_INSTANCE_TIME 70 + " <= ? AND " + Events.ORIGINAL_INSTANCE_TIME + " >= ?)) AND " 72 + "(" + Events.LAST_SYNCED + " = ?)"; 85 Tables.EVENTS + "." + Events._ID + "=" + Tables.INSTANCES + "." + Instances.EVENT_ID + 87 " WHERE " + Tables.EVENTS + "." + Events._ID + "=? OR " + 88 Tables.EVENTS + "." + Events.ORIGINAL_ID + "=?)"; [all …]
|
D | CalendarDebug.java | 50 CalendarContract.Events._ID, 99 String where = CalendarContract.Events.CALENDAR_ID + "=" + id; in doInBackground() 101 CalendarContract.Events.CONTENT_URI, EVENTS_PROJECTION, where, in doInBackground() 110 String dirtyWhere = CalendarContract.Events.CALENDAR_ID + "=" + id in doInBackground() 111 + " AND " + CalendarContract.Events.DIRTY + "=1"; in doInBackground() 113 CalendarContract.Events.CONTENT_URI, EVENTS_PROJECTION, dirtyWhere, in doInBackground()
|
/packages/providers/CalendarProvider/src/com/android/providers/calendar/enterprise/ |
D | CrossProfileCalendarHelper.java | 46 EVENTS_TABLE_ALLOWED_LIST.add(CalendarContract.Events._ID); 47 EVENTS_TABLE_ALLOWED_LIST.add(CalendarContract.Events.CALENDAR_ID); 48 EVENTS_TABLE_ALLOWED_LIST.add(CalendarContract.Events.TITLE); 49 EVENTS_TABLE_ALLOWED_LIST.add(CalendarContract.Events.EVENT_LOCATION); 50 EVENTS_TABLE_ALLOWED_LIST.add(CalendarContract.Events.EVENT_COLOR); 51 EVENTS_TABLE_ALLOWED_LIST.add(CalendarContract.Events.STATUS); 52 EVENTS_TABLE_ALLOWED_LIST.add(CalendarContract.Events.DTSTART); 53 EVENTS_TABLE_ALLOWED_LIST.add(CalendarContract.Events.DTEND); 54 EVENTS_TABLE_ALLOWED_LIST.add(CalendarContract.Events.EVENT_TIMEZONE); 55 EVENTS_TABLE_ALLOWED_LIST.add(CalendarContract.Events.EVENT_END_TIMEZONE); [all …]
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
D | Analytics.java | 75 entry(LogUtils.Events.SET_SELECT_PHONE_ACCOUNT, 77 entry(LogUtils.Events.REQUEST_HOLD, AnalyticsEvent.REQUEST_HOLD), 78 entry(LogUtils.Events.REQUEST_UNHOLD, AnalyticsEvent.REQUEST_UNHOLD), 79 entry(LogUtils.Events.SWAP, AnalyticsEvent.SWAP), 80 entry(LogUtils.Events.SKIP_RINGING, AnalyticsEvent.SKIP_RINGING), 81 entry(LogUtils.Events.CONFERENCE_WITH, AnalyticsEvent.CONFERENCE_WITH), 82 entry(LogUtils.Events.SPLIT_FROM_CONFERENCE, AnalyticsEvent.SPLIT_CONFERENCE), 83 entry(LogUtils.Events.SET_PARENT, AnalyticsEvent.SET_PARENT), 84 entry(LogUtils.Events.MUTE, AnalyticsEvent.MUTE), 85 entry(LogUtils.Events.UNMUTE, AnalyticsEvent.UNMUTE), [all …]
|
D | Ringer.java | 309 Log.addEvent(foregroundCall, LogUtils.Events.SKIP_RINGING, in startRinging() 317 Log.addEvent(foregroundCall, LogUtils.Events.SKIP_RINGING, "Dialer handles"); in startRinging() 323 Log.addEvent(foregroundCall, LogUtils.Events.SKIP_RINGING, "Silent ringing " in startRinging() 327 Log.addEvent(foregroundCall, LogUtils.Events.SKIP_RINGING, in startRinging() 337 Log.addEvent(foregroundCall, LogUtils.Events.FLASH_NOTIFICATION_START); in startRinging() 357 Log.addEvent(foregroundCall, LogUtils.Events.START_RINGER); in startRinging() 388 Log.addEvent(foregroundCall, LogUtils.Events.SKIP_RINGING, in startRinging() 437 Log.addEvent(foregroundCall, LogUtils.Events.SKIP_VIBRATION, in startRinging() 536 foregroundCall, LogUtils.Events.SKIP_VIBRATION, "using audio-coupled haptics"); in vibrateIfNeeded() 543 Log.addEvent(foregroundCall, LogUtils.Events.START_VIBRATOR, in vibrateIfNeeded() [all …]
|
D | Call.java | 1037 Log.addEvent(this, LogUtils.Events.CREATED, callingPackage + ";" + extraCreationLogs); in initAnalytics() 1057 Log.addEvent(this, LogUtils.Events.DESTROYED); in destroy() 1328 Log.addEvent(this, LogUtils.Events.OVERRIDE_DISCONNECT_MESSAGE, message); in handleOverrideDisconnectMessage() 1402 event = LogUtils.Events.SET_ACTIVE; in setState() 1405 event = LogUtils.Events.SET_CONNECTING; in setState() 1408 event = LogUtils.Events.SET_DIALING; in setState() 1411 event = LogUtils.Events.SET_PULLING; in setState() 1414 event = LogUtils.Events.SET_DISCONNECTED; in setState() 1418 event = LogUtils.Events.SET_DISCONNECTING; in setState() 1421 event = LogUtils.Events.SET_HOLD; in setState() [all …]
|
/packages/apps/Calendar/src/com/android/calendar/ |
D | EventInfoFragment.kt | 35 import android.provider.CalendarContract.Events 119 Events._ID, // 0 do not remove; used in DeleteEventHelper 120 Events.TITLE, // 1 do not remove; used in DeleteEventHelper 121 Events.RRULE, // 2 do not remove; used in DeleteEventHelper 122 Events.ALL_DAY, // 3 do not remove; used in DeleteEventHelper 123 Events.CALENDAR_ID, // 4 do not remove; used in DeleteEventHelper 124 Events.DTSTART, // 5 do not remove; used in DeleteEventHelper 125 Events._SYNC_ID, // 6 do not remove; used in DeleteEventHelper 126 Events.EVENT_TIMEZONE, // 7 do not remove; used in DeleteEventHelper 127 Events.DESCRIPTION, // 8 [all …]
|
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
D | RecurrenceSetTest.java | 110 values.put(CalendarContract.Events.DTSTART, 0); in testRRULEfolding() 111 values.put(CalendarContract.Events.DURATION, "P3600S"); in testRRULEfolding() 112 values.put(CalendarContract.Events.RRULE, RRULE_LESS_THAN_75_CHARS); in testRRULEfolding() 126 values.put(CalendarContract.Events.DTSTART, 0); in testRRULEfolding() 127 values.put(CalendarContract.Events.DURATION, "P3600S"); in testRRULEfolding() 128 values.put(CalendarContract.Events.RRULE, RRULE_MORE_THAN_75_CHARS); in testRRULEfolding() 139 values.put(CalendarContract.Events.DTSTART, 0); in testRRULEfolding() 140 values.put(CalendarContract.Events.DURATION, "P3600S"); in testRRULEfolding() 141 values.put(CalendarContract.Events.RRULE, STRING_WITH_160_CHARS); in testRRULEfolding()
|
D | CalendarProvider2Test.java | 40 import android.provider.CalendarContract.Events; 105 private Uri mEventsUri = Events.CONTENT_URI; 287 if (CalendarContract.Events.STATUS.equals(pair.key)) { in execute() 294 if (map.size() == 1 && map.containsKey(Events.STATUS)) { in execute() 445 int titleColumn = cursor.getColumnIndex(Events.TITLE); in execute() 446 int allDayColumn = cursor.getColumnIndex(Events.ALL_DAY); in execute() 889 new KeyValue(CalendarContract.Events.STATUS, 890 Integer.toString(CalendarContract.Events.STATUS_CANCELED)), 936 new KeyValue(Events.RRULE, "FREQ=DAILY;UNTIL=20080505T150000Z;WKST=SU"), 946 new KeyValue(Events.RRULE, "FREQ=DAILY;UNTIL=20080502T150000Z;WKST=SU"), [all …]
|
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/enterprise/ |
D | CrossProfileCalendarHelperTest.java | 20 import android.provider.CalendarContract.Events; 53 Events._ID, in testProjectionNotInAllowedList_throwErrorForEvents() 54 Events.DESCRIPTION in testProjectionNotInAllowedList_throwErrorForEvents() 57 mHelper.getCalibratedProjection(projection, Events.CONTENT_URI); in testProjectionNotInAllowedList_throwErrorForEvents() 58 fail(String.format("Exception not found for projection %s", Events.DESCRIPTION)); in testProjectionNotInAllowedList_throwErrorForEvents() 67 Events.DESCRIPTION in testProjectionNotInAllowedList_throwErrorForInstances() 71 fail(String.format("Exception not found for projection %s", Events.DESCRIPTION)); in testProjectionNotInAllowedList_throwErrorForInstances() 85 final String[] projection = mHelper.getCalibratedProjection(null, Events.CONTENT_URI); in testNoProjection_getFullAllowedListProjectionForEvents()
|
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/ |
D | StopwatchService.kt | 26 import com.android.deskclock.events.Events 42 val label: Int = intent.getIntExtra(Events.EXTRA_EVENT_LABEL, R.string.label_intent) in onBind() 45 Events.sendStopwatchEvent(R.string.action_show, label) in onBind() 54 Events.sendStopwatchEvent(R.string.action_start, label) in onBind() 58 Events.sendStopwatchEvent(R.string.action_pause, label) in onBind() 62 Events.sendStopwatchEvent(R.string.action_reset, label) in onBind() 66 Events.sendStopwatchEvent(R.string.action_lap, label) in onBind()
|
/packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/ |
D | RefreshHelper.java | 25 import com.android.documentsui.base.Events; 41 if (Events.isMouseEvent(e)) { in onInterceptTouchEvent() 42 if (Events.isActionDown(e)) { in onInterceptTouchEvent() 48 if (Events.isActionDown(e) && rv.computeVerticalScrollOffset() != 0) { in onInterceptTouchEvent() 53 if (Events.isActionUp(e)) { in onInterceptTouchEvent() 61 if (Events.isActionUp(e)) { in onTouchEvent()
|
/packages/apps/DeskClock/src/com/android/deskclock/timer/ |
D | TimerService.kt | 28 import com.android.deskclock.events.Events 51 val label = intent.getIntExtra(Events.EXTRA_EVENT_LABEL, R.string.label_intent) in onStartCommand() 78 Events.sendTimerEvent(R.string.action_show, label) in onStartCommand() 91 Events.sendTimerEvent(R.string.action_start, label) in onStartCommand() 95 Events.sendTimerEvent(R.string.action_pause, label) in onStartCommand() 99 Events.sendTimerEvent(R.string.action_add_minute, label) in onStartCommand() 106 Events.sendTimerEvent(R.string.action_fire, label) in onStartCommand()
|
/packages/apps/DeskClock/src/com/android/deskclock/alarms/ |
D | AlarmTimeClickHandler.kt | 32 import com.android.deskclock.events.Events 74 Events.sendAlarmEvent(if (newState) R.string.action_enable else R.string.action_disable, in setAlarmEnabled() 84 Events.sendAlarmEvent(R.string.action_toggle_vibrate, R.string.label_deskclock) in setAlarmVibrationEnabled() 123 Events.sendAlarmEvent(R.string.action_toggle_repeat_days, R.string.label_deskclock) in setAlarmRepeatEnabled() 145 Events.sendAlarmEvent(R.string.action_delete, R.string.label_deskclock) in onDeleteClicked() 152 Events.sendAlarmEvent(R.string.action_set_time, R.string.label_deskclock) in onClockClicked() 166 Events.sendAlarmEvent(R.string.action_set_ringtone, R.string.label_deskclock) in onRingtoneClicked() 173 Events.sendAlarmEvent(R.string.action_set_label, R.string.label_deskclock) in onEditLabelClicked()
|
/packages/apps/DeskClock/src/com/android/deskclock/data/ |
D | WidgetModel.kt | 23 import com.android.deskclock.events.Events 37 Events.sendEvent(eventCategoryId, R.string.action_create, 0) in updateWidgetCount() 41 Events.sendEvent(eventCategoryId, R.string.action_delete, 0) in updateWidgetCount()
|
D | StopwatchNotificationBuilder.kt | 39 import com.android.deskclock.events.Events 62 .putExtra(Events.EXTRA_EVENT_LABEL, eventLabel) in build() 82 .putExtra(Events.EXTRA_EVENT_LABEL, eventLabel) in build() 93 .putExtra(Events.EXTRA_EVENT_LABEL, eventLabel) in build() 115 .putExtra(Events.EXTRA_EVENT_LABEL, eventLabel) in build() 125 .putExtra(Events.EXTRA_EVENT_LABEL, eventLabel) in build()
|
/packages/services/Telecomm/src/com/android/server/telecom/callredirection/ |
D | CallRedirectionProcessor.java | 101 ? LogUtils.Events.REDIRECTION_SENT_USER in onServiceBound() 102 : LogUtils.Events.REDIRECTION_SENT_CARRIER, mComponentName); in onServiceBound() 145 ? LogUtils.Events.REDIRECTION_BOUND_USER in onServiceConnected() 146 : LogUtils.Events.REDIRECTION_BOUND_CARRIER, componentName); in onServiceConnected() 350 Log.addEvent(mCall, LogUtils.Events.REDIRECTION_COMPLETED_USER); in onCallRedirectionComplete() 361 Log.addEvent(mCall, LogUtils.Events.REDIRECTION_COMPLETED_CARRIER); in onCallRedirectionComplete() 435 ? LogUtils.Events.REDIRECTION_TIMED_OUT_USER in processTimeoutForCallRedirection() 436 : LogUtils.Events.REDIRECTION_TIMED_OUT_CARRIER); in processTimeoutForCallRedirection()
|
/packages/apps/TV/common/src/com/android/tv/common/compat/internal/ |
D | TvViewCompatProcessor.java | 25 import com.android.tv.common.compat.internal.Events.NotifyDevToast; 26 import com.android.tv.common.compat.internal.Events.NotifySignalStrength; 27 import com.android.tv.common.compat.internal.Events.SessionEvent; 62 protected final void handleSessionEvent(String inputId, Events.SessionEvent sessionEvent) { in handleSessionEvent()
|
/packages/apps/DeskClock/src/com/android/deskclock/controller/ |
D | ShortcutController.kt | 41 import com.android.deskclock.events.Events 77 .putExtra(Events.EXTRA_EVENT_LABEL, R.string.label_shortcut) in createNewAlarmShortcut() 94 .putExtra(Events.EXTRA_EVENT_LABEL, R.string.label_shortcut) in createNewTimerShortcut() 122 .putExtra(Events.EXTRA_EVENT_LABEL, R.string.label_shortcut) in createStopwatchShortcut() 127 .putExtra(Events.EXTRA_EVENT_LABEL, R.string.label_shortcut) in createStopwatchShortcut() 142 .putExtra(Events.EXTRA_EVENT_LABEL, R.string.label_shortcut) in createScreensaverShortcut()
|
/packages/providers/MediaProvider/photopicker/src/com/android/photopicker/inject/ |
D | EmbeddedServiceModule.kt | 30 import com.android.photopicker.core.events.Events in <lambda>() 75 private lateinit var events: Events in <lambda>() 103 events: Lazy<Events>, in <lambda>() 217 ): Events { in <lambda>() 221 Log.d(Events.TAG, "Events requested but not yet initialized. Initializing Events.") in <lambda>() 222 return Events(scope, configurationManager.configuration, featureManager) in <lambda>()
|
D | ActivityModule.kt | 26 import com.android.photopicker.core.events.Events 75 private lateinit var events: Events 174 ): Events { in provideEvents() 178 Log.d(Events.TAG, "Events requested but not yet initialized. Initializing Events.") in provideEvents() 179 return Events(scope, configurationManager.configuration, featureManager) in provideEvents()
|
/packages/providers/MediaProvider/photopicker/tests/src/com/android/photopicker/core/events/ |
D | EventsTest.kt | 73 Events( in <lambda>() 102 Events( in <lambda>() 132 Events( in <lambda>() 168 Events( in <lambda>() 211 Events( in <lambda>() 239 Events( in testEventDoesNotThrowUnregisteredEventOnProd()
|
/packages/apps/DeskClock/src/com/android/deskclock/ |
D | HandleShortcuts.kt | 23 import com.android.deskclock.events.Events 36 Events.sendStopwatchEvent(R.string.action_pause, R.string.label_shortcut) in onCreate() 45 Events.sendStopwatchEvent(R.string.action_start, R.string.label_shortcut) in onCreate()
|