OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SensorList
(Results
1 - 3
of
3
) sorted by null
/frameworks/native/services/sensorservice/
SensorList.cpp
17
#include "
SensorList
.h"
27
const Sensor
SensorList
::mNonSensor = Sensor("unknown");
29
bool
SensorList
::add(
42
bool
SensorList
::remove(int handle) {
52
String8
SensorList
::getName(int handle) const {
58
sp<SensorInterface>
SensorList
::getInterface(int handle) const {
64
bool
SensorList
::isNewHandle(int handle) const {
69
const Vector<Sensor>
SensorList
::getUserSensors() const {
82
const Vector<Sensor>
SensorList
::getUserDebugSensors() const {
95
const Vector<Sensor>
SensorList
::getDynamicSensors() const
[
all
...]
SensorList.h
37
class
SensorList
: public Dumpable {
39
// After SensorInterface * is added into
SensorList
, it can be assumed that
SensorList
own the
66
//
SensorList
object on which forEachSensor is invoked.
75
virtual ~
SensorList
();
95
// same
SensorList
object on which forEachSensor is invoked.
108
void
SensorList
::forEachSensor(const TF& f) const {
114
void
SensorList
::forEachEntry(const TF& f) const {
125
T
SensorList
::getOne(int handle, const TF& accessor, T def) const {
/packages/services/Car/tools/
update-obd2-sensors.py
28
class
SensorList
(object):
184
sensorList
= dct['
sensorList
']
190
sensorList
.addSensor(self)
199
sensorList
.sensorClass = newClass
202
intSensors =
SensorList
(descriptor="Integer")
203
floatSensors =
SensorList
(descriptor="Float")
206
sensorList
= intSensors
209
sensorList
= floatSensors
Completed in 219 milliseconds