Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/accessibilityservice/
DAccessibilityService.java375 public boolean onGesture(int gestureId); in onGesture() argument
441 protected boolean onGesture(int gestureId) { in onGesture() argument
674 public boolean onGesture(int gestureId) { in onBind() argument
675 return AccessibilityService.this.onGesture(gestureId); in onBind()
729 public void onGesture(int gestureId) {
730 Message message = mCaller.obtainMessageI(DO_ON_GESTURE, gestureId);
788 final int gestureId = message.arg1;
789 mCallback.onGesture(gestureId);
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DAccessibilityManagerService.java735 boolean onGesture(int gestureId) { in onGesture() argument
737 boolean handled = notifyGestureLocked(gestureId, false); in onGesture()
739 handled = notifyGestureLocked(gestureId, true); in onGesture()
867 private boolean notifyGestureLocked(int gestureId, boolean isDefault) { in notifyGestureLocked() argument
881 service.notifyGesture(gestureId); in notifyGestureLocked()
2717 public void notifyGesture(int gestureId) { in notifyGesture() argument
2719 gestureId, 0).sendToTarget(); in notifyGesture()
2732 private void notifyGestureInternal(int gestureId) { in notifyGestureInternal() argument
2739 listener.onGesture(gestureId); in notifyGestureInternal()
2741 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.java941 public boolean onGesture(int gestureId) { in IAccessibilityServiceClientImpl()
/frameworks/native/services/inputflinger/
DInputReader.cpp5337 uint32_t gestureId; in preparePointerGestures() local
5339 gestureId = usedGestureIdBits.markFirstUnmarkedBit(); in preparePointerGestures()
5340 mPointerGesture.freeformTouchToGestureIdMap[touchId] = gestureId; in preparePointerGestures()
5344 touchId, gestureId); in preparePointerGestures()
5347 gestureId = mPointerGesture.freeformTouchToGestureIdMap[touchId]; in preparePointerGestures()
5351 touchId, gestureId); in preparePointerGestures()
5354 mPointerGesture.currentGestureIdBits.markBit(gestureId); in preparePointerGestures()
5355 mPointerGesture.currentGestureIdToIndex[gestureId] = i; in preparePointerGestures()
5366 mPointerGesture.currentGestureProperties[i].id = gestureId; in preparePointerGestures()