Home
last modified time | relevance | path

Searched refs:PlatformSensor (Results 1 – 5 of 5) sorted by relevance

/system/chre/platform/linux/
Dplatform_sensor.cc21 uint8_t PlatformSensor::getSensorType() const { in getSensorType()
25 uint64_t PlatformSensor::getMinInterval() const { in getMinInterval()
29 bool PlatformSensor::reportsBiasEvents() const { in reportsBiasEvents()
33 bool PlatformSensor::supportsPassiveMode() const { in supportsPassiveMode()
37 const char *PlatformSensor::getSensorName() const { in getSensorName()
41 uint8_t PlatformSensor::getSensorIndex() const { in getSensorIndex()
45 uint16_t PlatformSensor::getTargetGroupMask() const { in getTargetGroupMask()
49 PlatformSensor::PlatformSensor(PlatformSensor &&other) { in PlatformSensor() function in chre::PlatformSensor
53 PlatformSensor &PlatformSensor::operator=(PlatformSensor &&other) { in operator =()
/system/chre/platform/slpi/see/
Dplatform_sensor.cc32 uint8_t PlatformSensor::getSensorType() const { in getSensorType()
36 uint64_t PlatformSensor::getMinInterval() const { in getMinInterval()
40 bool PlatformSensor::reportsBiasEvents() const { in reportsBiasEvents()
44 bool PlatformSensor::supportsPassiveMode() const { in supportsPassiveMode()
48 const char *PlatformSensor::getSensorName() const { in getSensorName()
52 uint16_t PlatformSensor::getTargetGroupMask() const { in getTargetGroupMask()
56 PlatformSensor::PlatformSensor(PlatformSensor &&other) { in PlatformSensor() function in chre::PlatformSensor
60 uint8_t PlatformSensor::getSensorIndex() const { in getSensorIndex()
64 PlatformSensor &PlatformSensor::operator=(PlatformSensor &&other) { in operator =()
/system/chre/platform/include/chre/platform/
Dplatform_sensor.h34 class PlatformSensor : public PlatformSensorBase, public NonCopyable {
85 PlatformSensor() = default;
87 PlatformSensor(PlatformSensor &&other);
88 PlatformSensor &operator=(PlatformSensor &&other);
90 ~PlatformSensor() = default;
/system/chre/core/
Dsensor.cc26 : PlatformSensor(std::move(other)), mFlushRequestPending(false) { in Sensor()
31 PlatformSensor::operator=(std::move(other)); in operator =()
/system/chre/core/include/chre/core/
Dsensor.h38 class Sensor : public PlatformSensor {