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

/frameworks/native/services/sensorservice/
H A DCorrectedGyroSensor.cpp64 status_t CorrectedGyroSensor::setDelay(void* ident, int /*handle*/, int64_t ns) { function in class:android::CorrectedGyroSensor
65 mSensorDevice.setDelay(ident, mGyro.getHandle(), ns);
66 return mSensorFusion.setDelay(ident, ns);
H A DOrientationSensor.cpp72 status_t OrientationSensor::setDelay(void* ident, int /*handle*/, int64_t ns) { function in class:android::OrientationSensor
73 return mSensorFusion.setDelay(ident, ns);
H A DRotationVectorSensor.cpp59 status_t RotationVectorSensor::setDelay(void* ident, int /*handle*/, int64_t ns) { function in class:android::RotationVectorSensor
60 return mSensorFusion.setDelay(ident, ns);
108 status_t GyroDriftSensor::setDelay(void* ident, int /*handle*/, int64_t ns) { function in class:android::GyroDriftSensor
109 return mSensorFusion.setDelay(ident, ns);
H A DGravitySensor.cpp73 status_t GravitySensor::setDelay(void* ident, int /*handle*/, int64_t ns) { function in class:android::GravitySensor
74 return mSensorFusion.setDelay(ident, ns);
H A DLinearAccelerationSensor.cpp57 status_t LinearAccelerationSensor::setDelay(void* ident, int handle, int64_t ns) { function in class:android::LinearAccelerationSensor
58 return mGravitySensor.setDelay(ident, handle, ns);
H A DSensorFusion.cpp120 status_t SensorFusion::setDelay(void* ident, int64_t ns) { function in class:android::SensorFusion
121 // Call batch with timeout zero instead of setDelay().
H A DSensorInterface.cpp60 status_t HardwareSensor::setDelay(void* ident, int handle, int64_t ns) { function in class:android::HardwareSensor
61 return mSensorDevice.setDelay(ident, handle, ns);
H A DSensorDevice.cpp199 // On older devices which do not support batch, call setDelay().
201 ALOGD_IF(DEBUG_CONNECTIONS, "\t>>> actuating h/w setDelay %d %" PRId64, handle,
203 mSensorDevice->setDelay(
260 // For older devices which do not support batch, call setDelay() after activate() is
261 // called. Some older devices may not support calling setDelay before activate(), so
262 // call setDelay in SensorDevice::activate() method.
275 status_t SensorDevice::setDelay(void* ident, int handle, int64_t samplingPeriodNs) function in class:android::SensorDevice
283 // If the underlying sensor is NOT in continuous mode, setDelay() should return an error.
284 // Calling setDelay() in batch mode is an invalid operation.
295 return mSensorDevice->setDelay(reinterpret_cas
[all...]
/frameworks/base/core/java/android/view/animation/
H A DLayoutAnimationController.java263 * @see #setDelay(float)
281 public void setDelay(float delay) { method in class:LayoutAnimationController
317 * @see #setDelay(float)

Completed in 100 milliseconds