OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:input_property_t
(Results
1 - 4
of
4
) sorted by null
/frameworks/native/services/inputflinger/host/
InputDriver.h
73
virtual
input_property_t
* inputGetDeviceProperty(input_property_map_t* map,
75
virtual const char* inputGetPropertyKey(
input_property_t
* property) = 0;
76
virtual const char* inputGetPropertyValue(
input_property_t
* property) = 0;
77
virtual void inputFreeDeviceProperty(
input_property_t
* property) = 0;
120
virtual
input_property_t
* inputGetDeviceProperty(input_property_map_t* map,
122
virtual const char* inputGetPropertyKey(
input_property_t
* property) override;
123
virtual const char* inputGetPropertyValue(
input_property_t
* property) override;
124
virtual void inputFreeDeviceProperty(
input_property_t
* property) override;
182
input_property_t
* input_get_device_property(input_host_t* host, input_property_map_t* map,
185
const char* input_get_property_key(input_host_t* host,
input_property_t
* property)
[
all
...]
InputDriver.cpp
240
input_property_t
* InputDriver::inputGetDeviceProperty(input_property_map_t* map,
245
auto prop = new
input_property_t
();
257
const char* InputDriver::inputGetPropertyKey(
input_property_t
* property) {
264
const char* InputDriver::inputGetPropertyValue(
input_property_t
* property) {
271
void InputDriver::inputFreeDeviceProperty(
input_property_t
* property) {
386
input_property_t
* input_get_device_property(input_host_t* host, input_property_map_t* map,
392
const char* input_get_property_key(input_host_t* host,
input_property_t
* property) {
397
const char* input_get_property_value(input_host_t* host,
input_property_t
* property) {
402
void input_free_device_property(input_host_t* host,
input_property_t
* property) {
/hardware/libhardware/modules/input/evdev/
InputHost.h
115
InputProperty(input_host_t* host, input_host_callbacks_t cb,
input_property_t
* p) :
121
operator
input_property_t
*() { return mProperty; }
126
input_property_t
* mProperty;
/hardware/libhardware/include/hardware/
input.h
53
typedef struct input_property
input_property_t
;
typedef in typeref:struct:input_property
513
* the key does not exist, or an
input_property_t
* that must be freed using
514
* input_free_device_property(). Using an
input_property_t
after the
517
input_property_t
* (*input_get_device_property)(input_host_t* host,
522
* The returned const char* is owned by the
input_property_t
.
524
const char* (*input_get_property_key)(input_host_t* host,
input_property_t
* property);
528
* NULL. The returned const char* is owned by the
input_property_t
.
530
const char* (*input_get_property_value)(input_host_t* host,
input_property_t
* property);
533
* Frees the
input_property_t
*.
535
void (*input_free_device_property)(input_host_t* host,
input_property_t
* property)
[
all
...]
Completed in 570 milliseconds