Home
last modified time | relevance | path

Searched refs:InputDriverInterface (Results 1 – 3 of 3) sorted by relevance

/frameworks/native/services/inputflinger/host/
DInputHost.h35 class InputDriverInterface; variable
44 virtual void registerInputDriver(InputDriverInterface* driver) = 0;
53 virtual void registerInputDriver(InputDriverInterface* driver) override;
58 std::vector<sp<InputDriverInterface>> mDrivers;
DInputDriver.h33 class InputDriverInterface : public virtual RefBase {
35 InputDriverInterface() = default;
36 virtual ~InputDriverInterface() = default;
44 class InputDriver : public InputDriverInterface {
DInputHost.cpp29 void InputHost::registerInputDriver(InputDriverInterface* driver) { in registerInputDriver()