HomeSort by relevance Sort by last modified time
    Searched refs:mPendingEvent (Results 1 - 12 of 12) sorted by null

  /device/samsung/crespo/libsensors/
LightSensor.cpp 44 mPendingEvent.version = sizeof(sensors_event_t);
45 mPendingEvent.sensor = ID_L;
46 mPendingEvent.type = SENSOR_TYPE_LIGHT;
47 memset(mPendingEvent.data, 0, sizeof(mPendingEvent.data));
118 mPendingEvent.timestamp = getTimestamp();
119 *data = mPendingEvent;
134 mPendingEvent.light = indexToValue(event->value);
139 mPendingEvent.timestamp = timevalToNano(event->time);
140 if (mEnabled && (mPendingEvent.light != mPreviousLight) &
    [all...]
GyroSensor.cpp 39 mPendingEvent.version = sizeof(sensors_event_t);
40 mPendingEvent.sensor = ID_GY;
41 mPendingEvent.type = SENSOR_TYPE_GYROSCOPE;
42 memset(mPendingEvent.data, 0, sizeof(mPendingEvent.data));
68 mPendingEvent.data[0] = value * CONVERT_GYRO_X;
70 mPendingEvent.data[1] = value * CONVERT_GYRO_Y;
72 mPendingEvent.data[2] = value * CONVERT_GYRO_Z;
131 mPendingEvent.timestamp = getTimestamp();
132 *data = mPendingEvent;
    [all...]
ProximitySensor.cpp 37 mPendingEvent.version = sizeof(sensors_event_t);
38 mPendingEvent.sensor = ID_P;
39 mPendingEvent.type = SENSOR_TYPE_PROXIMITY;
40 memset(mPendingEvent.data, 0, sizeof(mPendingEvent.data));
62 mPendingEvent.distance = indexToValue(absinfo.value);
103 mPendingEvent.timestamp = getTimestamp();
104 *data = mPendingEvent;
121 mPendingEvent.distance = indexToValue(event->value);
125 mPendingEvent.timestamp = timevalToNano(event->time)
    [all...]
ProximitySensor.h 36 sensors_event_t mPendingEvent;
GyroSensor.h 36 sensors_event_t mPendingEvent;
LightSensor.h 37 sensors_event_t mPendingEvent;
  /device/htc/passion-common/libsensors/
LightSensor.cpp 39 mPendingEvent.version = sizeof(sensors_event_t);
40 mPendingEvent.sensor = ID_L;
41 mPendingEvent.type = SENSOR_TYPE_LIGHT;
42 memset(mPendingEvent.data, 0, sizeof(mPendingEvent.data));
65 mPendingEvent.light = indexToValue(absinfo.value);
105 mPendingEvent.timestamp = getTimestamp();
106 *data = mPendingEvent;
123 mPendingEvent.light = indexToValue(event->value);
127 mPendingEvent.timestamp = timevalToNano(event->time)
    [all...]
ProximitySensor.cpp 39 mPendingEvent.version = sizeof(sensors_event_t);
40 mPendingEvent.sensor = ID_P;
41 mPendingEvent.type = SENSOR_TYPE_PROXIMITY;
42 memset(mPendingEvent.data, 0, sizeof(mPendingEvent.data));
66 mPendingEvent.distance = indexToValue(absinfo.value);
106 mPendingEvent.timestamp = getTimestamp();
107 *data = mPendingEvent;
122 mPendingEvent.distance = indexToValue(event->value);
125 mPendingEvent.timestamp = timevalToNano(event->time)
    [all...]
LightSensor.h 36 sensors_event_t mPendingEvent;
ProximitySensor.h 36 sensors_event_t mPendingEvent;
  /frameworks/base/libs/ui/
InputDispatcher.cpp 168 mPendingEvent(NULL), mAppSwitchDueTime(LONG_LONG_MAX),
267 if (! mPendingEvent) {
279 mPendingEvent = synthesizeKeyRepeatLocked(currentTime, keyRepeatDelay);
286 if (! mPendingEvent) {
348 mPendingEvent = entry;
352 if (mPendingEvent->policyFlags & POLICY_FLAG_PASS_TO_USER) {
353 pokeUserActivityLocked(mPendingEvent);
358 assert(mPendingEvent != NULL);
361 if (!(mPendingEvent->policyFlags & POLICY_FLAG_PASS_TO_USER)) {
366 switch (mPendingEvent->type)
    [all...]
  /frameworks/base/include/ui/
InputDispatcher.h 836 EventEntry* mPendingEvent;
    [all...]

Completed in 731 milliseconds