HomeSort by relevance Sort by last modified time
    Searched full:input_event (Results 1 - 25 of 43) sorted by null

1 2

  /device/samsung/tuna/libsensors/
InputEventReader.h 27 struct input_event;
31 struct input_event* const mBuffer;
32 struct input_event* const mBufferEnd;
33 struct input_event* mHead;
34 struct input_event* mCurr;
42 bool readEvent(int fd, input_event const** events);
InputEventReader.cpp 38 struct input_event;
41 : mBuffer(new input_event[numEvents]),
66 iov[0].iov_len = numFirst * sizeof(input_event);
72 iov[1].iov_len = numSecond * sizeof(input_event);
76 if (nread < 0 || nread % sizeof(input_event)) {
81 numEventsRead = nread / sizeof(input_event);
93 bool InputEventCircularReader::readEvent(int fd, input_event const** events)
LightSensor.h 31 struct input_event;
37 virtual bool handleEvent(input_event const * event);
PressureSensor.h 31 struct input_event;
34 virtual bool handleEvent(input_event const * event);
ProximitySensor.h 35 struct input_event;
40 virtual bool handleEvent(input_event const * event);
PressureSensor.cpp 42 bool PressureSensor::handleEvent(input_event const *event) {
ProximitySensor.cpp 67 bool ProximitySensor::handleEvent(input_event const *event) {
SamsungSensorBase.h 47 virtual bool handleEvent(input_event const * event);
SamsungSensorBase.cpp 49 bool SamsungSensorBase::handleEvent(input_event const * event) {
159 input_event const* event;
LightSensor.cpp 42 bool LightSensor::handleEvent(input_event const *event) {
  /bootable/recovery/minui/
minui.h 46 struct input_event;
63 int ev_get_input(int fd, short revents, struct input_event *ev);
events.c 135 int ev_get_input(int fd, short revents, struct input_event *ev)
  /system/core/toolbox/
sendevent.c 13 struct input_event { struct
54 struct input_event event;
powerd.c 16 struct input_event { struct
183 struct input_event event;
184 struct input_event light_event;
185 struct input_event light_event2;
  /external/kernel-headers/original/linux/
input.h 26 struct input_event { struct
    [all...]
uinput.h 71 struct input_event buff[UINPUT_BUFFER_SIZE];
  /system/core/debuggerd/
getevent.c 191 int get_event(struct input_event* event, int timeout)
debuggerd.c 478 extern int get_event(struct input_event* event, int timeout);
506 struct input_event e;
  /frameworks/base/services/input/
EventHub.cpp 485 struct input_event ev;
494 nWrite = write(device->fd, &ev, sizeof(struct input_event));
533 struct input_event readBuffer[bufferSize];
639 sizeof(struct input_event) * capacity);
650 } else if ((readSize % sizeof(struct input_event)) != 0) {
655 size_t count = size_t(readSize) / sizeof(struct input_event);
657 const struct input_event& iev = readBuffer[i];
    [all...]
  /system/core/charger/
charger.c 781 struct input_event *ev)
860 struct input_event ev;
887 struct input_event ev;
  /development/pdk/docs/porting/
keymaps_keyboard_input.jd 29 <p>Android's input event device is structured around an interrupt or polling routine that captures the device-specific scancode and converts it to a standard form acceptable to Linux (as defined in <code>input.h</code>) before passing it to the kernel with <code>input_event()</code>.</p>
409 input_event(edev->input, type, code, value);
  /bootable/recovery/
ui.c 302 struct input_event ev;
  /development/ndk/platforms/android-3/include/linux/
input.h 20 struct input_event { struct
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
input.h 20 struct input_event { struct
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
input.h 20 struct input_event { struct

Completed in 618 milliseconds

1 2