Home
last modified time | relevance | path

Searched refs:host (Results 1 – 12 of 12) sorted by relevance

/hardware/libhardware/include/hardware/
Dinput.h416 input_device_identifier_t* (*create_device_identifier)(input_host_t* host,
424 input_device_definition_t* (*create_device_definition)(input_host_t* host);
431 input_report_definition_t* (*create_input_report_definition)(input_host_t* host);
432 input_report_definition_t* (*create_output_report_definition)(input_host_t* host);
437 void (*free_report_definition)(input_host_t* host, input_report_definition_t* report_def);
442 void (*input_device_definition_add_report)(input_host_t* host,
455 void (*input_report_definition_add_collection)(input_host_t* host,
462 void (*input_report_definition_declare_usage_int)(input_host_t* host,
470 void (*input_report_definition_declare_usages_bool)(input_host_t* host,
479 input_device_handle_t* (*register_device)(input_host_t* host,
[all …]
/hardware/libhardware/modules/input/evdev/
DInputHost.h43 InputHostBase(input_host_t* host, input_host_callbacks_t cb) : mHost(host), mCallbacks(cb) {} in InputHostBase() argument
55 InputReport(input_host_t* host, input_host_callbacks_t cb, input_report_t* r) : in InputReport() argument
56 InputHostBase(host, cb), mReport(r) {} in InputReport()
75 InputReportDefinition(input_host_t* host, input_host_callbacks_t cb, in InputReportDefinition() argument
76 input_report_definition_t* r) : InputHostBase(host, cb), mReportDefinition(r) {} in InputReportDefinition()
96 InputDeviceDefinition(input_host_t* host, input_host_callbacks_t cb, in InputDeviceDefinition() argument
98 InputHostBase(host, cb), mDeviceDefinition(d) {} in InputDeviceDefinition()
115 InputProperty(input_host_t* host, input_host_callbacks_t cb, input_property_t* p) : in InputProperty() argument
116 InputHostBase(host, cb), mProperty(p) {} in InputProperty()
133 InputPropertyMap(input_host_t* host, input_host_callbacks_t cb, input_property_map_t* m) : in InputPropertyMap() argument
[all …]
DInputDeviceManager.h39 explicit InputDeviceManager(InputHostInterface* host) : in InputDeviceManager() argument
40 mHost(host) {} in InputDeviceManager()
DEvdevModule.cpp99 input_host_t* host, input_host_callbacks_t cb) { in input_init() argument
101 auto inputHost = new InputHost(host, cb); in input_init()
DInputDevice.h58 EvdevDevice(InputHostInterface* host, const std::shared_ptr<InputDeviceNode>& node);
DInputDevice.cpp111 EvdevDevice::EvdevDevice(InputHostInterface* host, const std::shared_ptr<InputDeviceNode>& node) : in EvdevDevice() argument
112 mHost(host), mDeviceNode(node), mDeviceDefinition(mHost->createDeviceDefinition()) { in EvdevDevice()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
DAndroid.mk95 $$(call host-c-includes,$$(LOCAL_C_INCLUDES) $$(CONFIG_DIR)) \
98 $$(call host-c-includes,$$($(my)C_INCLUDES)) \
/hardware/intel/img/psb_video/debian/
Drules42 …./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${p…
/hardware/bsp/intel/peripheral/libmraa/
DCMakeLists.txt126 …# Get target package arch from Yocto ADT sysroot if set or host OS, mapping to Ubuntu name if nece…
/hardware/intel/common/libmix/mix_common/
DINSTALL204 "host" platform (i.e., that on which the generated programs will
205 eventually be run) with `--host=TYPE'.
/hardware/bsp/intel/peripheral/libupm/
DCMakeLists.txt136 …# Get target package arch from Yocto ADT sysroot if set or host OS, mapping to Ubuntu name if nece…
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/src/
Dgtest-all.cc1493 SocketWriter(const string& host, const string& port) in SocketWriter() argument
1494 : sockfd_(-1), host_name_(host), port_num_(port) { in SocketWriter()
1539 StreamingListener(const string& host, const string& port) in StreamingListener() argument
1540 : socket_writer_(new SocketWriter(host, port)) { Start(); } in StreamingListener()