Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/accessibilityservice/
DAccessibilityService.java374 public boolean onGesture(int gestureId); in onGesture() argument
440 protected boolean onGesture(int gestureId) { in onGesture() argument
673 public boolean onGesture(int gestureId) { in onBind() argument
674 return AccessibilityService.this.onGesture(gestureId); in onBind()
728 public void onGesture(int gestureId) {
729 Message message = mCaller.obtainMessageI(DO_ON_GESTURE, gestureId);
787 final int gestureId = message.arg1;
788 mCallback.onGesture(gestureId);
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DAccessibilityManagerService.java743 boolean onGesture(int gestureId) { in onGesture() argument
745 boolean handled = notifyGestureLocked(gestureId, false); in onGesture()
747 handled = notifyGestureLocked(gestureId, true); in onGesture()
890 private boolean notifyGestureLocked(int gestureId, boolean isDefault) { in notifyGestureLocked() argument
904 service.notifyGesture(gestureId); in notifyGestureLocked()
2786 public void notifyGesture(int gestureId) { in notifyGesture() argument
2788 gestureId, 0).sendToTarget(); in notifyGesture()
2801 private void notifyGestureInternal(int gestureId) { in notifyGestureInternal() argument
2808 listener.onGesture(gestureId); in notifyGestureInternal()
2810 Slog.e(LOG_TAG, "Error during sending gesture " + gestureId in notifyGestureInternal()
[all …]
DTouchExplorer.java825 final int gestureId = Integer.parseInt(bestPrediction.name); in handleMotionEventGestureDetecting() local
826 mAms.onGesture(gestureId); in handleMotionEventGestureDetecting()
/frameworks/base/core/java/android/app/
DUiAutomation.java998 public boolean onGesture(int gestureId) { in IAccessibilityServiceClientImpl()
/frameworks/native/services/inputflinger/
DInputReader.cpp5726 uint32_t gestureId; in preparePointerGestures() local
5728 gestureId = usedGestureIdBits.markFirstUnmarkedBit(); in preparePointerGestures()
5729 mPointerGesture.freeformTouchToGestureIdMap[touchId] = gestureId; in preparePointerGestures()
5733 touchId, gestureId); in preparePointerGestures()
5736 gestureId = mPointerGesture.freeformTouchToGestureIdMap[touchId]; in preparePointerGestures()
5740 touchId, gestureId); in preparePointerGestures()
5743 mPointerGesture.currentGestureIdBits.markBit(gestureId); in preparePointerGestures()
5744 mPointerGesture.currentGestureIdToIndex[gestureId] = i; in preparePointerGestures()
5755 mPointerGesture.currentGestureProperties[i].id = gestureId; in preparePointerGestures()