HomeSort by relevance Sort by last modified time
    Searched refs:sensors (Results 1 - 25 of 302) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
SensorBatchingTestsActivity.java 17 package com.android.cts.verifier.sensors;
19 import com.android.cts.verifier.sensors.base.SensorCtsTestActivity;
SensorIntegrationTestsActivity.java 17 package com.android.cts.verifier.sensors;
19 import com.android.cts.verifier.sensors.base.SensorCtsTestActivity;
SensorTestActivity.java 17 package com.android.cts.verifier.sensors;
19 import com.android.cts.verifier.sensors.base.SensorCtsTestActivity;
SingleSensorTestsActivity.java 17 package com.android.cts.verifier.sensors;
19 import com.android.cts.verifier.sensors.base.SensorCtsTestActivity;
SensorPowerTestActivity.java 17 package com.android.cts.verifier.sensors;
19 import com.android.cts.verifier.sensors.base.SensorCtsVerifierTestActivity;
20 import com.android.cts.verifier.sensors.helpers.PowerTestHostLink;
21 import com.android.cts.verifier.sensors.helpers.SensorTestScreenManipulator;
22 import com.android.cts.verifier.sensors.reporting.SensorTestDetails;
  /device/google/contexthub/sensorhal/
sensorlist.h 21 #include <hardware/sensors.h>
23 // A list of sensors provided by a device.
27 // TODO(aarossig): Consider de-duplicating Google sensors.
  /hardware/invensense/6515/libsensors_iio/software/core/mllite/
data_builder.c 61 static struct inv_sensor_cal_t sensors; variable in typeref:struct:inv_sensor_cal_t
91 memcpy(raw, sensors.compass.raw, sizeof(sensors.compass.raw));
98 // copy in the saved accuracy in the actual sensors accuracy
99 sensors.gyro.accuracy = inv_data_builder.save.gyro_accuracy;
100 sensors.accel.accuracy = inv_data_builder.save.accel_accuracy;
101 sensors.compass.accuracy = inv_data_builder.save.compass_accuracy;
103 if (sensors.accel.accuracy == 3) {
106 if (sensors.compass.accuracy == 3) {
155 memset(&sensors, 0, sizeof(sensors))
    [all...]
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/
data_builder.c 60 static struct inv_sensor_cal_t sensors; variable in typeref:struct:inv_sensor_cal_t
90 memcpy(raw, sensors.compass.raw, sizeof(sensors.compass.raw));
97 // copy in the saved accuracy in the actual sensors accuracy
98 sensors.gyro.accuracy = inv_data_builder.save.gyro_accuracy;
99 sensors.accel.accuracy = inv_data_builder.save.accel_accuracy;
100 sensors.compass.accuracy = inv_data_builder.save.compass_accuracy;
102 if (sensors.accel.accuracy == 3) {
105 if (sensors.compass.accuracy == 3) {
154 memset(&sensors, 0, sizeof(sensors))
    [all...]
  /hardware/libhardware/modules/sensors/
Android.mk 23 LOCAL_MODULE := sensors.$(TARGET_DEVICE)
SensorEventQueue.h 20 #include <hardware/sensors.h>
  /frameworks/native/services/sensorservice/
SensorList.cpp 19 #include <hardware/sensors.h>
71 Vector<Sensor> sensors; local
73 [&sensors] (const Entry& e) -> bool {
75 sensors.add(e.si->getSensor());
79 return sensors;
84 Vector<Sensor> sensors; local
86 [&sensors] (const Entry& e) -> bool {
88 sensors.add(e.si->getSensor());
92 return sensors;
97 Vector<Sensor> sensors; local
110 Vector<Sensor> sensors; local
    [all...]
SensorServiceUtils.cpp 19 #include <hardware/sensors.h>
  /hardware/bsp/intel/peripheral/sensors/mraa/
SensorsHAL.cpp 48 memset(sensors, 0, sizeof(Sensor *) * MAX_DEVICES);
55 if (sensors[i]) {
56 delete sensors[i];
57 sensors[i] = nullptr;
77 ALOGE("%s: Cannot add more than %d sensors.", __func__, MAX_DEVICES);
96 ALOGE("%s: Failed to open sensors hal. Error message: %s",
132 if (sensors[handle] == nullptr) {
133 sensors[handle] = sensorFactoryFuncs[handle](pollFd);
134 if (sensors[handle] == nullptr) {
137 rc = sensors[handle]->activate(handle, enabled)
    [all...]
hal.mk 20 LOCAL_CFLAGS += -DLOG_TAG=\"Sensors\" -Wno-unused-parameter
24 LOCAL_MODULE := sensors.$(TARGET_DEVICE)
29 LOCAL_SRC_FILES += sensors/MPU9150Accelerometer.cpp
33 LOCAL_SRC_FILES += sensors/MMA7660Accelerometer.cpp
37 LOCAL_SRC_FILES += sensors/LSM9DS0Accelerometer.cpp
41 LOCAL_SRC_FILES += sensors/LSM303dAccelerometer.cpp
45 LOCAL_SRC_FILES += sensors/LSM303dOrientation.cpp
49 LOCAL_SRC_FILES += sensors/GroveLight.cpp
53 LOCAL_SRC_FILES += sensors/GroveTemperature.cpp
57 LOCAL_SRC_FILES += sensors/ProximityGPIO.cp
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/helpers/
SensorDeviceAdminReceiver.java 17 package com.android.cts.verifier.sensors.helpers;
  /packages/services/Car/car-support-lib/src/android/support/car/hardware/
CarSensorManagerEmbedded.java 62 proxy.sensors |= sensorType;
99 proxy.sensors &= ~sensorType;
100 if (proxy.sensors == 0) {
146 public int sensors; field in class:CarSensorManagerEmbedded.CarSensorEventListenerProxy
148 public CarSensorEventListenerProxy(CarSensorEventListener listener, int sensors) {
150 this.sensors = sensors;
  /device/google/contexthub/firmware/src/drivers/bosch_bmi160/
bosch_bmi160.c 31 #include <sensors.h>
400 struct BMI160Sensor sensors[NUM_OF_SENSOR]; member in struct:BMI160Task
839 if (mTask.sensors[STEPCNT].powered && mTask.step_cnt_changed) {
848 sensorSignalInternalEvt(mTask.sensors[ACC].handle,
855 sensorSignalInternalEvt(mTask.sensors[GYR].handle,
863 sensorSignalInternalEvt(mTask.sensors[MAG].handle,
871 sensorSignalInternalEvt(mTask.sensors[STEP].handle,
878 sensorSignalInternalEvt(mTask.sensors[DTAP].handle,
885 sensorSignalInternalEvt(mTask.sensors[NOMO].handle,
892 sensorSignalInternalEvt(mTask.sensors[ANYMO].handle
    [all...]
  /frameworks/base/core/java/android/hardware/
LegacySensorManager.java 89 public boolean registerListener(SensorListener listener, int sensors, int rate) {
95 Sensor.TYPE_ACCELEROMETER, listener, sensors, rate) || result;
97 Sensor.TYPE_MAGNETIC_FIELD, listener, sensors, rate) || result;
99 Sensor.TYPE_ORIENTATION, listener, sensors, rate) || result;
101 Sensor.TYPE_ORIENTATION, listener, sensors, rate) || result;
103 Sensor.TYPE_TEMPERATURE, listener, sensors, rate) || result;
108 SensorListener listener, int sensors, int rate) {
111 if ((sensors & legacyType) != 0) {
118 // are called reentrantly while sensors are being registered or unregistered.
144 public void unregisterListener(SensorListener listener, int sensors) {
    [all...]
  /device/google/contexthub/util/nanotool/
nanotool.cpp 55 std::vector<SensorSpec> sensors; member in struct:ParsedArgs
100 " disable_all: send a disable request for all sensors\n"
120 " Some sensors require a ground truth value for calibration.\n"
124 " multiple sensors.\n"
146 fprintf(stderr, "Supported sensors: %s\n\n",
162 if (!args->sensors.size()
182 for (unsigned int i = 0; i < args->sensors.size(); i++) {
183 if (args->sensors[i].special_rate == SensorSpecialRate::None
184 && args->sensors[i].rate_hz < 0) {
188 args->sensors[i].sensor_type).c_str())
    [all...]
  /hardware/libhardware/modules/
Android.mk 2 power usbaudio audio_remote_submix camera usbcamera consumerir sensors vibrator \
  /hardware/bsp/intel/peripheral/sensors/mraa/sensors/
GroveLight.hpp 20 #include <hardware/sensors.h>
GroveTemperature.hpp 20 #include <hardware/sensors.h>
LSM303dAccelerometer.hpp 20 #include <hardware/sensors.h>
LSM303dOrientation.hpp 20 #include <hardware/sensors.h>
LSM9DS0Accelerometer.hpp 20 #include <hardware/sensors.h>

Completed in 3729 milliseconds

1 2 3 4 5 6 7 8 91011>>