Searched defs:eventType (Results 51 - 74 of 74) sorted by relevance

123

/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DTouchExplorer.java305 final int eventType = event.getEventType();
310 && eventType == AccessibilityEvent.TYPE_VIEW_HOVER_EXIT) {
318 && eventType == AccessibilityEvent.TYPE_VIEW_HOVER_EXIT) {
325 switch (eventType) {
1273 public SendAccessibilityEventDelayed(int eventType, int delay) { argument
1274 mEventType = eventType;
H A DAbstractAccessibilityServiceConnection.java259 final int eventType = message.what;
262 notifyAccessibilityEventInternal(eventType, event, serviceWantsEvent);
969 final int eventType = event.getEventType();
973 && ((AccessibilityCache.CACHE_CRITICAL_EVENTS_MASK & eventType) != 0);
984 && (eventType != AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED)) {
986 final AccessibilityEvent oldEvent = mPendingEvents.get(eventType);
987 mPendingEvents.put(eventType, newEvent);
989 mEventDispatchHandler.removeMessages(eventType);
992 message = mEventDispatchHandler.obtainMessage(eventType);
995 message = mEventDispatchHandler.obtainMessage(eventType, newEven
1040 notifyAccessibilityEventInternal( int eventType, AccessibilityEvent event, boolean serviceWantsEvent) argument
[all...]
H A DAccessibilityManagerService.java2965 final int eventType = event.getEventType();
2966 switch (eventType) {
3287 int eventType, int eventAction) {
3296 switch (eventType) {
3286 updateActiveAndAccessibilityFocusedWindowLocked(int windowId, long nodeId, int eventType, int eventAction) argument
/frameworks/base/services/tests/servicestests/src/com/android/server/usage/
H A DAppStandbyControllerTests.java407 private void reportEvent(AppStandbyController controller, int eventType, argument
413 ev.mEventType = eventType;
/frameworks/base/services/usage/java/com/android/server/usage/
H A DUsageStatsService.java1173 public void reportEvent(ComponentName component, int userId, int eventType) { argument
1186 event.mEventType = eventType;
1191 public void reportEvent(String packageName, int userId, int eventType) { argument
1203 event.mEventType = eventType;
H A DAppStandbyController.java887 private int usageEventToSubReason(int eventType) { argument
888 switch (eventType) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
H A DTelephonyMetrics.java1695 * @param eventType hangover type
1701 public void writeOnImsCallHandoverEvent(int phoneId, int eventType, ImsCallSession session, argument
1709 new CallSessionEventBuilder(eventType)
/frameworks/av/drm/libmediadrm/
H A DDrmHal.cpp407 DrmPlugin::EventType eventType; local
410 eventType = DrmPlugin::kDrmPluginEventProvisionRequired;
413 eventType = DrmPlugin::kDrmPluginEventKeyNeeded;
416 eventType = DrmPlugin::kDrmPluginEventKeyExpired;
419 eventType = DrmPlugin::kDrmPluginEventVendorDefined;
422 eventType = DrmPlugin::kDrmPluginEventSessionReclaimed;
427 listener->notify(eventType, 0, &obj);
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboardView.java987 private void sendAccessibilityEventForUnicodeCharacter(int eventType, int code) { argument
989 AccessibilityEvent event = AccessibilityEvent.obtain(eventType);
/frameworks/base/media/java/android/media/
H A DMediaDrm.java618 int what, int eventType, int extra, @Nullable Object obj)
625 Message m = md.mEventHandler.obtainMessage(what, eventType, extra, obj);
617 postEventFromNative(@onNull Object mediadrm_ref, int what, int eventType, int extra, @Nullable Object obj) argument
/frameworks/base/media/java/android/media/tv/
H A DTvInputService.java345 * @param eventType The type of the event.
350 public void notifySessionEvent(@NonNull final String eventType, final Bundle eventArgs) { argument
351 Preconditions.checkNotNull(eventType);
356 if (DEBUG) Log.d(TAG, "notifySessionEvent(" + eventType + ")");
358 mSessionCallback.onSessionEvent(eventType, eventArgs);
361 Log.w(TAG, "error in sending event (event=" + eventType + ")", e);
1637 * @param eventType The type of the event.
1642 public void notifySessionEvent(@NonNull final String eventType, final Bundle eventArgs) { argument
1643 Preconditions.checkNotNull(eventType);
1649 if (DEBUG) Log.d(TAG, "notifySessionEvent(" + eventType
[all...]
H A DTvInputManager.java479 * @param eventType The type of the event.
482 public void onSessionEvent(Session session, String eventType, Bundle eventArgs) { argument
661 void postSessionEvent(final String eventType, final Bundle eventArgs) { argument
665 mSessionCallback.onSessionEvent(mSession, eventType, eventArgs);
1020 public void onSessionEvent(String eventType, Bundle eventArgs, int seq) {
1027 record.postSessionEvent(eventType, eventArgs);
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationUsageStats.java1241 private void writeEvent(long eventTimeMs, int eventType, NotificationRecord r) { argument
1245 cv.put(COL_EVENT_TYPE, eventType);
1247 if (eventType == EVENT_TYPE_POST) {
/frameworks/base/services/core/java/com/android/server/tv/
H A DTvInputManagerService.java2601 public void onSessionEvent(String eventType, Bundle eventArgs) { argument
2604 Slog.d(TAG, "onEvent(eventType=" + eventType + ", eventArgs=" + eventArgs
2611 mSessionState.client.onSessionEvent(eventType, eventArgs, mSessionState.seq);
/frameworks/base/core/java/android/widget/
H A DNumberPicker.java2598 public void sendAccessibilityEventForVirtualView(int virtualViewId, int eventType) { argument
2602 sendAccessibilityEventForVirtualButton(virtualViewId, eventType,
2607 sendAccessibilityEventForVirtualText(eventType);
2611 sendAccessibilityEventForVirtualButton(virtualViewId, eventType,
2618 private void sendAccessibilityEventForVirtualText(int eventType) { argument
2620 AccessibilityEvent event = AccessibilityEvent.obtain(eventType);
2628 private void sendAccessibilityEventForVirtualButton(int virtualViewId, int eventType, argument
2631 AccessibilityEvent event = AccessibilityEvent.obtain(eventType);
H A DTextView.java11160 public void sendAccessibilityEventInternal(int eventType) { argument
11161 if (eventType == AccessibilityEvent.TYPE_VIEW_ACCESSIBILITY_FOCUSED && mEditor != null) {
11165 super.sendAccessibilityEventInternal(eventType);
/frameworks/base/core/java/com/android/internal/policy/
H A DDecorView.java561 public void sendAccessibilityEvent(int eventType) { argument
574 getChildAt(0).sendAccessibilityEvent(eventType);
576 super.sendAccessibilityEvent(eventType);
/frameworks/base/media/jni/
H A Dandroid_media_MediaDrm.cpp240 virtual void notify(DrmPlugin::EventType eventType, int extra, const Parcel *obj = NULL);
273 void JNIDrmListener::notify(DrmPlugin::EventType eventType, int extra, argument
280 switch (eventType) {
308 ALOGE("Invalid event DrmPlugin::EventType %d, ignored", (int)eventType);
475 void JDrm::notify(DrmPlugin::EventType eventType, int extra, const Parcel *obj) { argument
483 listener->notify(eventType, extra, obj);
/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp257 virtual void pokeUserActivity(nsecs_t eventTime, int32_t eventType);
1146 void NativeInputManager::pokeUserActivity(nsecs_t eventTime, int32_t eventType) { argument
1148 android_server_PowerManagerService_userActivity(eventTime, eventType);
/frameworks/native/services/inputflinger/
H A DInputDispatcher.cpp1808 int32_t eventType = USER_ACTIVITY_EVENT_OTHER; local
1817 eventType = USER_ACTIVITY_EVENT_TOUCH;
1826 eventType = USER_ACTIVITY_EVENT_BUTTON;
1834 commandEntry->userActivityEventType = eventType;
2649 ALOGD("injectInputEvent - eventType=%d, injectorPid=%d, injectorUid=%d, "
/frameworks/support/car/car-stubs/
H A Dandroid.car.jarMETA-INF/ META-INF/MANIFEST.MF android/car/Car.class Car.java package android ...
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java15383 void handleApplicationCrashInner(String eventType, ProcessRecord r, String processName, argument
15395 eventType,
15409 addErrorToDropBox(eventType, r, processName, null, null, null, null, null, crashInfo);
15678 * @param eventType to include in the drop box tag ("crash", "wtf", etc.)
15687 public void addErrorToDropBox(String eventType, argument
15700 final String dropboxTag = processClass(process) + "_" + eventType;
[all...]
/frameworks/base/core/java/android/view/
H A DView.java7351 * @param eventType The type of the event to send, as defined by several types from
7361 public void sendAccessibilityEvent(int eventType) { argument
7363 mAccessibilityDelegate.sendAccessibilityEvent(this, eventType);
7365 sendAccessibilityEventInternal(eventType);
7396 public void sendAccessibilityEventInternal(int eventType) { argument
7398 sendAccessibilityEventUnchecked(AccessibilityEvent.obtain(eventType));
11359 private void sendAccessibilityHoverEvent(int eventType) { argument
11372 source.sendAccessibilityEvent(eventType);
27004 sendAccessibilityEvent(View host, int eventType) argument
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 772 milliseconds

123