OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:input_event
(Results
1 - 25
of
87
) sorted by null
1
2
3
4
/device/moto/stingray/sensors/
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;
41
ssize_t readEvent(
input_event
const** events);
InputEventReader.cpp
33
struct
input_event
;
36
: mBuffer(new
input_event
[numEvents * 2]),
53
const ssize_t nread = read(fd, mHead, mFreeSpace * sizeof(
input_event
));
54
if (nread<0 || nread % sizeof(
input_event
)) {
59
numEventsRead = nread / sizeof(
input_event
);
65
memcpy(mBuffer, mBufferEnd, s * sizeof(
input_event
));
74
ssize_t InputEventCircularReader::readEvent(
input_event
const** events)
AccelerationSensor.h
32
struct
input_event
;
AkmSensor.h
32
struct
input_event
;
GyroSensor.h
33
struct
input_event
;
LightSensor.h
31
struct
input_event
;
PressureSensor.h
33
struct
input_event
;
/device/samsung/crespo/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;
41
ssize_t readEvent(
input_event
const** events);
InputEventReader.cpp
33
struct
input_event
;
36
: mBuffer(new
input_event
[numEvents * 2]),
53
const ssize_t nread = read(fd, mHead, mFreeSpace * sizeof(
input_event
));
54
if (nread<0 || nread % sizeof(
input_event
)) {
59
numEventsRead = nread / sizeof(
input_event
);
65
memcpy(mBuffer, mBufferEnd, s * sizeof(
input_event
));
74
ssize_t InputEventCircularReader::readEvent(
input_event
const** events)
AkmSensor.h
32
struct
input_event
;
GyroSensor.h
31
struct
input_event
;
LightSensor.h
31
struct
input_event
;
ProximitySensor.h
31
struct
input_event
;
/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
;
35
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);
LightSensor.cpp
36
bool LightSensor::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);
/system/core/debuggerd/
getevent.h
22
int get_event(struct
input_event
* event, int timeout);
/bootable/recovery/minui/
minui.h
50
struct
input_event
;
67
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;
Completed in 202 milliseconds
1
2
3
4