Home
last modified time | relevance | path

Searched refs:notifyStylusGestureStarted (Results 1 – 9 of 9) sorted by relevance

/frameworks/native/services/inputflinger/tests/
DFakeInputReaderPolicy.h92 void notifyStylusGestureStarted(int32_t deviceId, nsecs_t eventTime) override;
DFakeInputReaderPolicy.cpp258 void FakeInputReaderPolicy::notifyStylusGestureStarted(int32_t deviceId, nsecs_t eventTime) { in notifyStylusGestureStarted() function in android::FakeInputReaderPolicy
/frameworks/native/services/inputflinger/tests/fuzzers/
DMapperHelpers.h291 void notifyStylusGestureStarted(int32_t, nsecs_t) {} in notifyStylusGestureStarted() function
342 void notifyStylusGestureStarted(int32_t, nsecs_t) {} in notifyStylusGestureStarted() function
/frameworks/native/services/inputflinger/include/
DInputReaderBase.h449 virtual void notifyStylusGestureStarted(int32_t deviceId, nsecs_t eventTime) = 0;
/frameworks/base/services/tests/servicestests/src/com/android/server/input/
DBatteryControllerTests.kt579 batteryController.notifyStylusGestureStarted(USI_DEVICE_ID, TIMESTAMP) in testStylusPresenceExtendsValidUsiBatteryState()
615 batteryController.notifyStylusGestureStarted(USI_DEVICE_ID, TIMESTAMP) in testStylusPresenceMakesUsiBatteryStateValid()
643 batteryController.notifyStylusGestureStarted(USI_DEVICE_ID, TIMESTAMP) in testStylusPresenceDoesNotMakeUsiBatteryStateValidAtBoot()
/frameworks/base/services/core/jni/
Dcom_android_server_input_InputManagerService.cpp110 jmethodID notifyStylusGestureStarted; member
325 void notifyStylusGestureStarted(int32_t deviceId, nsecs_t eventTime) override;
1304 void NativeInputManager::notifyStylusGestureStarted(int32_t deviceId, nsecs_t eventTime) { in notifyStylusGestureStarted() function in android::NativeInputManager
1306 env->CallVoidMethod(mServiceObj, gServiceClassInfo.notifyStylusGestureStarted, deviceId, in notifyStylusGestureStarted()
2753 GET_METHOD_ID(gServiceClassInfo.notifyStylusGestureStarted, clazz, "notifyStylusGestureStarted", in register_android_server_InputManager()
/frameworks/base/services/core/java/com/android/server/input/
DBatteryController.java430 public void notifyStylusGestureStarted(int deviceId, long eventTime) { in notifyStylusGestureStarted() method in BatteryController
DInputManagerService.java2561 private void notifyStylusGestureStarted(int deviceId, long eventTime) { in notifyStylusGestureStarted() method in InputManagerService
2562 mBatteryController.notifyStylusGestureStarted(deviceId, eventTime); in notifyStylusGestureStarted()
/frameworks/native/services/inputflinger/reader/
DInputReader.cpp176 mPolicy->notifyStylusGestureStarted(motionArgs->deviceId, motionArgs->eventTime); in loopOnce()