Home
last modified time | relevance | path

Searched refs:flushSensor (Results 1 – 21 of 21) sorted by relevance

/aosp12/frameworks/native/services/inputflinger/dispatcher/include/
H A DInputDispatcherInterface.h209 virtual bool flushSensor(int deviceId, InputDeviceSensorType sensorType) = 0;
/aosp12/frameworks/native/services/inputflinger/reader/mapper/
H A DInputMapper.cpp81 void InputMapper::flushSensor(InputDeviceSensorType sensorType) {} in flushSensor() function in android::InputMapper
H A DInputMapper.h75 virtual void flushSensor(InputDeviceSensorType sensorType);
H A DSensorInputMapper.h40 void flushSensor(InputDeviceSensorType sensorType) override;
H A DSensorInputMapper.cpp316 void SensorInputMapper::flushSensor(InputDeviceSensorType sensorType) { in flushSensor() function in android::SensorInputMapper
/aosp12/frameworks/base/core/java/android/hardware/input/
H A DIInputManager.aidl136 boolean flushSensor(int deviceId, int sensorType); in flushSensor() method
H A DInputManager.java1222 public boolean flushSensor(int deviceId, int sensorType) { in flushSensor() method in InputManager
1224 return mIm.flushSensor(deviceId, sensorType); in flushSensor()
H A DInputDeviceSensorManager.java556 if (!mInputManager.flushSensor(deviceId, sensor.getType())) { in flush()
/aosp12/frameworks/native/services/inputflinger/include/
H A DInputReaderBase.h132 virtual void flushSensor(int32_t deviceId, InputDeviceSensorType sensorType) = 0;
/aosp12/frameworks/native/services/inputflinger/reader/
H A DInputDevice.cpp523 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 DInputReader.cpp671 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 DInputReader.h96 void flushSensor(int32_t deviceId, InputDeviceSensorType sensorType) override;
H A DInputDevice.h97 void flushSensor(InputDeviceSensorType sensorType);
/aosp12/frameworks/native/services/sensorservice/
H A DSensorService.h119 status_t flushSensor(const sp<SensorEventConnection>& connection,
H A DSensorEventConnection.cpp809 return mService->flushSensor(this, mOpPackageName); in flush()
H A DSensorService.cpp1892 status_t SensorService::flushSensor(const sp<SensorEventConnection>& connection, in flushSensor() function in android::SensorService
/aosp12/frameworks/native/services/inputflinger/dispatcher/
H A DInputDispatcher.h140 bool flushSensor(int deviceId, InputDeviceSensorType sensorType) override;
H A DInputDispatcher.cpp1536 bool InputDispatcher::flushSensor(int deviceId, InputDeviceSensorType sensorType) { in flushSensor() function in android::inputdispatcher::InputDispatcher
/aosp12/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp2268 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 DInputManagerService.java2424 public boolean flushSensor(int deviceId, int sensorType) { in flushSensor() method in InputManagerService
/aosp12/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp3038 mapper.flushSensor(InputDeviceSensorType::ACCELEROMETER); in TEST_F()
3068 mapper.flushSensor(InputDeviceSensorType::GYROSCOPE); in TEST_F()