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

  /hardware/akm/AK8975_FS/libsensors/
AkmSensor.cpp 43 memset(mPendingEvents, 0, sizeof(mPendingEvents));
45 mPendingEvents[Accelerometer].version = sizeof(sensors_event_t);
46 mPendingEvents[Accelerometer].sensor = ID_A;
47 mPendingEvents[Accelerometer].type = SENSOR_TYPE_ACCELEROMETER;
48 mPendingEvents[Accelerometer].acceleration.status = SENSOR_STATUS_ACCURACY_HIGH;
50 mPendingEvents[MagneticField].version = sizeof(sensors_event_t);
51 mPendingEvents[MagneticField].sensor = ID_M;
52 mPendingEvents[MagneticField].type = SENSOR_TYPE_MAGNETIC_FIELD;
53 mPendingEvents[MagneticField].magnetic.status = SENSOR_STATUS_ACCURACY_HIGH
    [all...]
AkmSensor.h 58 sensors_event_t mPendingEvents[numSensors];
  /hardware/invensense/60xx/libsensors/
MPLSensor.cpp 218 memset(mPendingEvents, 0, sizeof(mPendingEvents));
220 mPendingEvents[RotationVector].version = sizeof(sensors_event_t);
221 mPendingEvents[RotationVector].sensor = ID_RV;
222 mPendingEvents[RotationVector].type = SENSOR_TYPE_ROTATION_VECTOR;
224 mPendingEvents[LinearAccel].version = sizeof(sensors_event_t);
225 mPendingEvents[LinearAccel].sensor = ID_LA;
226 mPendingEvents[LinearAccel].type = SENSOR_TYPE_LINEAR_ACCELERATION;
228 mPendingEvents[Gravity].version = sizeof(sensors_event_t);
229 mPendingEvents[Gravity].sensor = ID_GR
    [all...]
MPLSensor.h 120 sensors_event_t mPendingEvents[numSensors];
  /frameworks/base/core/jni/
android_view_InputQueue.cpp 88 return mPendingEvents.size() > 0;
94 if (!mPendingEvents.isEmpty()) {
95 *outEvent = mPendingEvents[0];
96 mPendingEvents.removeAt(0);
99 if (mPendingEvents.isEmpty()) {
175 mPendingEvents.push(event);
176 if (mPendingEvents.size() == 1) {
  /frameworks/base/core/java/android/inputmethodservice/
IInputMethodSessionWrapper.java 195 private final SparseArray<InputEvent> mPendingEvents = new SparseArray<InputEvent>();
210 mPendingEvents.put(seq, event);
226 int index = mPendingEvents.indexOfKey(seq);
228 InputEvent event = mPendingEvents.valueAt(index);
229 mPendingEvents.removeAt(index);
  /frameworks/base/include/android_runtime/
android_view_InputQueue.h 79 Vector<InputEvent*> mPendingEvents;
  /hardware/invensense/65xx/libsensors_iio/
MPLSensor.cpp 457 memset(mPendingEvents, 0, sizeof(mPendingEvents));
459 mPendingEvents[RotationVector].version = sizeof(sensors_event_t);
460 mPendingEvents[RotationVector].sensor = ID_RV;
461 mPendingEvents[RotationVector].type = SENSOR_TYPE_ROTATION_VECTOR;
462 mPendingEvents[RotationVector].acceleration.status
465 mPendingEvents[GameRotationVector].version = sizeof(sensors_event_t);
466 mPendingEvents[GameRotationVector].sensor = ID_GRV;
467 mPendingEvents[GameRotationVector].type = SENSOR_TYPE_GAME_ROTATION_VECTOR;
468 mPendingEvents[GameRotationVector].acceleration.statu
    [all...]
MPLSensor.h 376 sensors_event_t mPendingEvents[NumSensors];
  /hardware/invensense/60xx/libsensors_iio/
MPLSensor.cpp 262 memset(mPendingEvents, 0, sizeof(mPendingEvents));
264 mPendingEvents[RotationVector].version = sizeof(sensors_event_t);
265 mPendingEvents[RotationVector].sensor = ID_RV;
266 mPendingEvents[RotationVector].type = SENSOR_TYPE_ROTATION_VECTOR;
268 mPendingEvents[LinearAccel].version = sizeof(sensors_event_t);
269 mPendingEvents[LinearAccel].sensor = ID_LA;
270 mPendingEvents[LinearAccel].type = SENSOR_TYPE_LINEAR_ACCELERATION;
272 mPendingEvents[Gravity].version = sizeof(sensors_event_t);
273 mPendingEvents[Gravity].sensor = ID_GR
    [all...]
MPLSensor.h 247 sensors_event_t mPendingEvents[numSensors];
  /frameworks/native/services/surfaceflinger/
EventThread.cpp 134 mPendingEvents.add(event);
195 eventPending = !mPendingEvents.isEmpty();
198 *event = mPendingEvents[0];
199 mPendingEvents.removeAt(0);
EventThread.h 120 Vector< DisplayEventReceiver::Event > mPendingEvents;
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodManager.java 338 final SparseArray<PendingEvent> mPendingEvents = new SparseArray<PendingEvent>(20);
    [all...]
  /frameworks/base/services/java/com/android/server/accessibility/
AccessibilityManagerService.java     [all...]

Completed in 93 milliseconds