Searched defs:setDelay (Results 1 - 9 of 9) sorted by relevance

/frameworks/native/services/sensorservice/
H A DCorrectedGyroSensor.cpp75 status_t CorrectedGyroSensor::setDelay(void* ident, int /*handle*/, int64_t ns) { function in class:android::CorrectedGyroSensor
76 mSensorDevice.setDelay(ident, mGyro.getHandle(), ns);
77 return mSensorFusion.setDelay(FUSION_9AXIS, ident, ns);
H A DGravitySensor.cpp82 status_t GravitySensor::setDelay(void* ident, int /*handle*/, int64_t ns) { function in class:android::GravitySensor
83 return mSensorFusion.setDelay(FUSION_NOMAG, ident, ns);
H A DLinearAccelerationSensor.cpp68 status_t LinearAccelerationSensor::setDelay(void* ident, int handle, int64_t ns) { function in class:android::LinearAccelerationSensor
69 return mGravitySensor.setDelay(ident, handle, ns);
H A DOrientationSensor.cpp78 status_t OrientationSensor::setDelay(void* ident, int /*handle*/, int64_t ns) { function in class:android::OrientationSensor
79 return mSensorFusion.setDelay(FUSION_9AXIS, ident, ns);
H A DRotationVectorSensor.cpp69 status_t RotationVectorSensor::setDelay(void* ident, int /*handle*/, int64_t ns) { function in class:android::RotationVectorSensor
70 return mSensorFusion.setDelay(mMode, ident, ns);
154 status_t GyroDriftSensor::setDelay(void* ident, int /*handle*/, int64_t ns) { function in class:android::GyroDriftSensor
155 return mSensorFusion.setDelay(FUSION_9AXIS, ident, ns);
H A DSensorFusion.cpp159 status_t SensorFusion::setDelay(int mode, void* ident, int64_t ns) { function in class:android::SensorFusion
160 // Call batch with timeout zero instead of setDelay().
H A DSensorInterface.cpp75 status_t HardwareSensor::setDelay(void* ident, int handle, int64_t ns) { function in class:android::HardwareSensor
76 return mSensorDevice.setDelay(ident, handle, ns);
H A DSensorDevice.cpp224 // On older devices which do not support batch, call setDelay().
226 ALOGD_IF(DEBUG_CONNECTIONS, "\t>>> actuating h/w setDelay %d %" PRId64, handle,
228 mSensorDevice->setDelay(
285 // For older devices which do not support batch, call setDelay() after activate() is
286 // called. Some older devices may not support calling setDelay before activate(), so
287 // call setDelay in SensorDevice::activate() method.
300 status_t SensorDevice::setDelay(void* ident, int handle, int64_t samplingPeriodNs) { function in class:android::SensorDevice
308 // If the underlying sensor is NOT in continuous mode, setDelay() should return an error.
309 // Calling setDelay() in batch mode is an invalid operation.
320 return mSensorDevice->setDelay(reinterpret_cas
[all...]
/frameworks/base/core/java/android/view/animation/
H A DLayoutAnimationController.java265 * @see #setDelay(float)
283 public void setDelay(float delay) { method in class:LayoutAnimationController
319 * @see #setDelay(float)

Completed in 91 milliseconds