OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InputDeviceDefinition
(Results
1 - 4
of
4
) sorted by null
/hardware/libhardware/modules/input/evdev/
InputHost.h
94
class
InputDeviceDefinition
: private InputHostBase {
96
InputDeviceDefinition
(input_host_t* host, input_host_callbacks_t cb,
99
virtual ~
InputDeviceDefinition
() = default;
105
InputDeviceDefinition
(const
InputDeviceDefinition
& rhs) = delete;
106
InputDeviceDefinition
& operator=(const
InputDeviceDefinition
& rhs) = delete;
154
virtual
InputDeviceDefinition
* createDeviceDefinition() = 0;
160
InputDeviceDefinition
* d) = 0;
175
InputDeviceDefinition
* createDeviceDefinition() override
[
all
...]
InputDevice.h
32
class
InputDeviceDefinition
;
71
InputDeviceDefinition
* mDeviceDefinition = nullptr;
InputHost.cpp
56
void
InputDeviceDefinition
::addReport(InputReportDefinition* r) {
83
InputDeviceDefinition
* InputHost::createDeviceDefinition() {
84
return new
InputDeviceDefinition
(mHost, mCallbacks, mCallbacks.create_device_definition(mHost));
102
InputDeviceDefinition
* d) {
/hardware/libhardware/tests/input/evdev/
MockInputHost.h
48
class MockInputDeviceDefinition : public
InputDeviceDefinition
{
50
MockInputDeviceDefinition() :
InputDeviceDefinition
(nullptr, {}, nullptr) {}
75
MOCK_METHOD0(createDeviceDefinition,
InputDeviceDefinition
*());
80
InputDeviceDefinition
* d));
Completed in 237 milliseconds