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

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/helpers/
PowerTestHostLink.java 213 final int sensorId = getSensorId(sensor);
214 if (mSensorManager.getDefaultSensor(sensorId) == null) {
327 int sensorId = getSensorId(sensorName);
328 if (sensorId >= 0) {
329 response = switchSensor(sensorId, switchOn, requestRate);
344 int sensorId = -1;
347 sensorId = Sensor.TYPE_ACCELEROMETER;
349 sensorId = Sensor.TYPE_AMBIENT_TEMPERATURE;
351 sensorId = Sensor.TYPE_GAME_ROTATION_VECTOR;
353 sensorId = Sensor.TYPE_GEOMAGNETIC_ROTATION_VECTOR
    [all...]
  /system/chre/platform/slpi/smgr/
platform_sensor.cc 106 uint8_t sensorId;
114 bool makeAllPendingRequests(uint8_t sensorId);
115 bool removeAllPassiveRequests(uint8_t sensorId);
121 * @return The index of the element that belongs to sensorId.
123 size_t getSensorMonitorIndex(uint8_t sensorId) {
126 if (gSensorMonitors[i].sensorId == sensorId) {
134 * Converts a sensorId, dataType and calType as provided by SMGR to a
138 * @param sensorId The sensorID as provided by the SMGR request for sensor info
    [all...]
  /system/chre/platform/slpi/smgr/include/chre/target_platform/
platform_sensor_base.h 44 uint8_t sensorId;
51 //! The calibration type of this sensor. SMGR overloads sensorId and dataType
  /packages/services/Car/tools/
update-obd2-sensors.py 107 sensorId = str(theSensor.id).replace("_INDEX", "")
109 str(sensorId) + ";"
162 def adjustSensorId(self, descriptor, sensorId):
163 if sensorId.isdigit(): return sensorId
164 return "DIAGNOSTIC_SENSOR_%s_%s" % (descriptor, sensorId.upper())
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
DynamicSensorDiscoveryTestActivity.java 149 Integer sensorId = mCallback.getSensorId();
150 boolean match = mSensorId != null && sensorId != null &&
151 sensorId.intValue() == mSensorId.intValue();
185 public boolean waitForConnection(Integer sensorId) {
187 mExpectSensorId = sensorId;
  /frameworks/base/services/core/java/com/android/server/am/
HealthStatsBatteryStatsWriter.java 123 int sensorId = sensors.keyAt(i);
126 if (sensorId == BatteryStats.Uid.Sensor.GPS) {
130 addTimers(uidWriter, UidHealthStats.TIMERS_SENSORS, Integer.toString(sensorId),

Completed in 166 milliseconds