OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InputHost
(Results
1 - 8
of
8
) sorted by null
/frameworks/native/services/inputflinger/host/
InputHost.cpp
20
#include "
InputHost
.h"
29
void
InputHost
::registerInputDriver(InputDriverInterface* driver) {
35
void
InputHost
::dump(String8& result) {
InputHost.h
45
class
InputHost
: public InputHostInterface {
47
InputHost
() = default;
InputFlinger.cpp
43
mHost = new
InputHost
();
Android.mk
23
InputHost
.cpp
/hardware/libhardware/modules/input/evdev/
InputHost.cpp
17
#include "
InputHost
.h"
77
InputDeviceIdentifier*
InputHost
::createDeviceIdentifier(const char* name, int32_t productId,
83
InputDeviceDefinition*
InputHost
::createDeviceDefinition() {
87
InputReportDefinition*
InputHost
::createInputReportDefinition() {
92
InputReportDefinition*
InputHost
::createOutputReportDefinition() {
97
void
InputHost
::freeReportDefinition(InputReportDefinition* reportDef) {
101
InputDeviceHandle*
InputHost
::registerDevice(InputDeviceIdentifier* id,
106
void
InputHost
::unregisterDevice(InputDeviceHandle* handle) {
110
InputPropertyMap*
InputHost
::getDevicePropertyMap(InputDeviceIdentifier* id) {
115
void
InputHost
::freeDevicePropertyMap(InputPropertyMap* propertyMap)
[
all
...]
InputHost.h
167
class
InputHost
: public InputHostInterface, private InputHostBase {
169
InputHost
(input_host_t* host, input_host_callbacks_t cb) : InputHostBase(host, cb) {}
170
virtual ~
InputHost
() = default;
186
InputHost
(const
InputHost
& rhs) = delete;
187
InputHost
& operator=(const
InputHost
& rhs) = delete;
Android.mk
25
InputHost
.cpp \
EvdevModule.cpp
32
#include "
InputHost
.h"
41
explicit EvdevModule(InputHostInterface*
inputHost
);
57
EvdevModule::EvdevModule(InputHostInterface*
inputHost
) :
58
mInputHost(
inputHost
),
101
auto
inputHost
= new
InputHost
(host, cb);
102
gEvdevModule = std::make_unique<EvdevModule>(
inputHost
);
Completed in 103 milliseconds