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

1 2 3 4 5 6 7

  /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;
  /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/60xx/libsensors_iio/software/core/mllite/
data_builder.c 77 static struct inv_sensor_cal_t sensors; variable in typeref:struct:inv_sensor_cal_t
109 // copy in the saved accuracy in the actual sensors accuracy
110 sensors.gyro.accuracy = inv_data_builder.save.gyro_accuracy;
111 sensors.accel.accuracy = inv_data_builder.save.accel_accuracy;
112 sensors.compass.accuracy = inv_data_builder.save.compass_accuracy;
114 if (sensors.compass.accuracy == 3) {
133 memset(&sensors, 0, sizeof(sensors));
146 return sensors.gyro.sensitivity;
156 return sensors.accel.sensitivity
    [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>
  /hardware/libhardware/modules/
Android.mk 2 power usbaudio audio_remote_submix camera consumerir sensors vibrator \
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/helpers/
SensorDeviceAdminReceiver.java 17 package com.android.cts.verifier.sensors.helpers;
SensorSettingContainer.java 17 package com.android.cts.verifier.sensors.helpers;
20 import com.android.cts.verifier.sensors.base.BaseSensorTestActivity;
21 import com.android.cts.verifier.sensors.base.ISensorTestStateContainer;
25 * device settings that affect sensors.
  /device/samsung/manta/libsensors/
sensors.h 26 #include <hardware/sensors.h>
  /external/qemu/android/
sensors-port.c 18 #include "android/sensors-port.h"
19 #include "android/hw-sensors.h"
39 * Queries sent to sensors port of the SDK controller.
42 /* Queries the port for list of available sensors. */
46 * Messages sent between the emuator, and sensors port of the SDK controller.
62 * When SDK controller sensors port replies to a "list" query, it replies with
75 /* Describes a sensor in the array of emulated sensors. */
95 /* Sensors port descriptor. */
101 /* Lists sensors available for emulation. */
102 SensorDescriptor** sensors; member in struct:AndroidSensorsPort
    [all...]
hw-sensors.c 14 #include "android/hw-sensors.h"
23 #include "android/sensors-port.h"
27 #define D(...) VERBOSE_PRINT(sensors,__VA_ARGS__)
34 #define T(...) VERBOSE_PRINT(sensors,__VA_ARGS__)
123 * - when the qemu-specific sensors HAL module starts, it sends
124 * "list-sensors"
127 * to a bitmap of available hardware sensors in the current AVD
136 * send information about the corresponding enabled sensors. The default
173 Sensor sensors[MAX_SENSORS]; member in struct:__anon12842
180 HwSensors* sensors; member in struct:HwSensorClient
486 HwSensors* sensors = opaque; local
    [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...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
ISensorTestStateContainer.java 17 package com.android.cts.verifier.sensors.base;
  /device/generic/goldfish/sensors/
sensors_qemu.c 17 /* this implements a sensors hardware library for the Android emulator.
19 * placed into /system/lib/hw/sensors.goldfish.so
26 /* we connect with the emulator through the "sensors" qemud service
28 #define SENSORS_SERVICE_NAME "sensors"
39 #include <hardware/sensors.h>
114 /** SENSORS POLL DEVICE
123 sensors_event_t sensors[MAX_NUM_SENSORS]; member in struct:SensorPoll
133 * the sensors data (it is passed to data__data_open() below
156 uint32_t mask, sensors, active, new_sensors, changed; local
169 sensors = enabled ? mask : 0
    [all...]
  /device/lge/hammerhead/
device.mk 261 ro.qti.sensors.max_geomag_rotv=60 \
262 ro.qti.sensors.max_gyro_rate=200 \
263 ro.qti.sensors.max_accel_rate=200 \
264 ro.qti.sensors.max_grav=200 \
265 ro.qti.sensors.max_rotvec=200 \
266 ro.qti.sensors.max_orient=200 \
267 ro.qti.sensors.max_linacc=200 \
268 ro.qti.sensors.max_gamerv_rate=200
272 ro.qti.sensors.smd=true \
273 ro.qti.sensors.game_rv=true
    [all...]
  /hardware/invensense/60xx/mlsdk/mllite/
mldl.h 121 inv_error_t inv_dl_start(unsigned long sensors);
122 inv_error_t inv_dl_stop(unsigned long sensors);
126 inv_error_t inv_init_requested_sensors(unsigned long sensors);
  /device/asus/grouper/self-extractors/asus/staging/
device-partial.mk 17 sensors-config \
19 sensors.grouper \
  /device/asus/tilapia/self-extractors/asus/staging/
device-partial.mk 17 sensors-config \
20 sensors.grouper \
  /device/lge/hammerhead/libsensors/
sensors.h 28 #include <hardware/sensors.h>
  /hardware/invensense/60xx/libsensors/
sensors.h 28 #include <hardware/sensors.h>
48 * The SENSORS Module

Completed in 1378 milliseconds

1 2 3 4 5 6 7