/aosp12/frameworks/native/services/inputflinger/dispatcher/include/ |
H A D | InputDispatcherInterface.h | 209 virtual bool flushSensor(int deviceId, InputDeviceSensorType sensorType) = 0;
|
/aosp12/frameworks/native/services/inputflinger/reader/mapper/ |
H A D | InputMapper.cpp | 81 void InputMapper::flushSensor(InputDeviceSensorType sensorType) {} in flushSensor() function in android::InputMapper
|
H A D | InputMapper.h | 75 virtual void flushSensor(InputDeviceSensorType sensorType);
|
H A D | SensorInputMapper.h | 40 void flushSensor(InputDeviceSensorType sensorType) override;
|
H A D | SensorInputMapper.cpp | 316 void SensorInputMapper::flushSensor(InputDeviceSensorType sensorType) { in flushSensor() function in android::SensorInputMapper
|
/aosp12/frameworks/base/core/java/android/hardware/input/ |
H A D | IInputManager.aidl | 136 boolean flushSensor(int deviceId, int sensorType); in flushSensor() method
|
H A D | InputManager.java | 1222 public boolean flushSensor(int deviceId, int sensorType) { in flushSensor() method in InputManager 1224 return mIm.flushSensor(deviceId, sensorType); in flushSensor()
|
H A D | InputDeviceSensorManager.java | 556 if (!mInputManager.flushSensor(deviceId, sensor.getType())) { in flush()
|
/aosp12/frameworks/native/services/inputflinger/include/ |
H A D | InputReaderBase.h | 132 virtual void flushSensor(int32_t deviceId, InputDeviceSensorType sensorType) = 0;
|
/aosp12/frameworks/native/services/inputflinger/reader/ |
H A D | InputDevice.cpp | 523 void InputDevice::flushSensor(InputDeviceSensorType sensorType) { in flushSensor() function in android::InputDevice 524 for_each_mapper([sensorType](InputMapper& mapper) { mapper.flushSensor(sensorType); }); in flushSensor()
|
H A D | InputReader.cpp | 671 void InputReader::flushSensor(int32_t deviceId, InputDeviceSensorType sensorType) { in flushSensor() function in android::InputReader 676 device->flushSensor(sensorType); in flushSensor()
|
/aosp12/frameworks/native/services/inputflinger/reader/include/ |
H A D | InputReader.h | 96 void flushSensor(int32_t deviceId, InputDeviceSensorType sensorType) override;
|
H A D | InputDevice.h | 97 void flushSensor(InputDeviceSensorType sensorType);
|
/aosp12/frameworks/native/services/sensorservice/ |
H A D | SensorService.h | 119 status_t flushSensor(const sp<SensorEventConnection>& connection,
|
H A D | SensorEventConnection.cpp | 809 return mService->flushSensor(this, mOpPackageName); in flush()
|
H A D | SensorService.cpp | 1892 status_t SensorService::flushSensor(const sp<SensorEventConnection>& connection, in flushSensor() function in android::SensorService
|
/aosp12/frameworks/native/services/inputflinger/dispatcher/ |
H A D | InputDispatcher.h | 140 bool flushSensor(int deviceId, InputDeviceSensorType sensorType) override;
|
H A D | InputDispatcher.cpp | 1536 bool InputDispatcher::flushSensor(int deviceId, InputDeviceSensorType sensorType) { in flushSensor() function in android::inputdispatcher::InputDispatcher
|
/aosp12/frameworks/base/services/core/jni/ |
H A D | com_android_server_input_InputManagerService.cpp | 2268 im->getInputManager()->getReader()->flushSensor(deviceId, in nativeFlushSensor() 2270 return im->getInputManager()->getDispatcher()->flushSensor(deviceId, in nativeFlushSensor()
|
/aosp12/frameworks/base/services/core/java/com/android/server/input/ |
H A D | InputManagerService.java | 2424 public boolean flushSensor(int deviceId, int sensorType) { in flushSensor() method in InputManagerService
|
/aosp12/frameworks/native/services/inputflinger/tests/ |
H A D | InputReader_test.cpp | 3038 mapper.flushSensor(InputDeviceSensorType::ACCELEROMETER); in TEST_F() 3068 mapper.flushSensor(InputDeviceSensorType::GYROSCOPE); in TEST_F()
|