/external/qemu/android/ |
hw-sensors.c | 14 #include "android/hw-sensors.h" 24 #define D(...) VERBOSE_PRINT(sensors,__VA_ARGS__) 30 #define T(...) VERBOSE_PRINT(sensors,__VA_ARGS__) 119 * - when the qemu-specific sensors HAL module starts, it sends 120 * "list-sensors" 123 * to a bitmap of available hardware sensors in the current AVD 132 * send information about the corresponding enabled sensors. The default 169 Sensor sensors[MAX_SENSORS]; member in struct:__anon9441 175 HwSensors* sensors; member in struct:HwSensorClient 185 /* remove from sensors's list * 470 HwSensors* sensors = opaque; local [all...] |
/device/samsung/tuna/libsensors/ |
sensors.h | 28 #include <hardware/sensors.h>
|
Android.mk | 22 LOCAL_MODULE := sensors.tuna 28 LOCAL_CFLAGS := -DLOG_TAG=\"Sensors\" 31 sensors.cpp \
|
/development/tools/emulator/system/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...] |
Android.mk | 34 LOCAL_MODULE := sensors.vbox_x86 36 LOCAL_MODULE := sensors.goldfish
|
/sdk/emulator/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...] |
Android.mk | 33 LOCAL_MODULE := sensors.goldfish
|
/frameworks/base/core/java/android/webkit/ |
DeviceOrientationService.java | 145 List<Sensor> sensors = getSensorManager().getSensorList(Sensor.TYPE_ACCELEROMETER); local 146 if (sensors.isEmpty()) { 149 // TODO: Consider handling multiple sensors. 151 this, sensors.get(0), SensorManager.SENSOR_DELAY_FASTEST, mHandler); 155 List<Sensor> sensors = getSensorManager().getSensorList(Sensor.TYPE_MAGNETIC_FIELD); local 156 if (sensors.isEmpty()) { 159 // TODO: Consider handling multiple sensors. 161 this, sensors.get(0), SensorManager.SENSOR_DELAY_FASTEST, mHandler);
|
DeviceMotionService.java | 138 List<Sensor> sensors = getSensorManager().getSensorList(Sensor.TYPE_ACCELEROMETER); local 139 if (sensors.isEmpty()) { 143 // TODO: Consider handling multiple sensors. 145 this, sensors.get(0), SensorManager.SENSOR_DELAY_UI, mHandler);
|
/hardware/invensense/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);
|
ml.c | 29 * sensors. [all...] |
mldl.c | 246 * @param sensors 247 * Bitfield of the sensors that are going to be used. Combination of the 269 inv_error_t inv_init_requested_sensors(unsigned long sensors) 271 mldlCfg.requested_sensors = sensors; 281 * @param sensors 282 * Bitfield of the sensors to turn on. Combination of the following: 303 inv_error_t inv_dl_start(unsigned long sensors) 308 mldlCfg.requested_sensors = sensors; 314 sensors); 324 * @param sensors Bitfiled of the sensors to leave on. Combination of th [all...] |
/hardware/invensense/libsensors/ |
sensors.h | 28 #include <hardware/sensors.h> 48 * The SENSORS Module
|
/device/moto/stingray/sensors/ |
Android.mk | 23 LOCAL_CFLAGS := -DLOG_TAG=\"Sensors\" 26 sensors.c \ 42 LOCAL_MODULE := sensors.stingray
|
sensors.c | 18 #include <hardware/sensors.h> 25 * The SENSORS Module 75 .name = "Stingray SENSORS Module",
|
/device/samsung/crespo/libsensors/ |
Android.mk | 22 LOCAL_MODULE := sensors.herring 28 LOCAL_CFLAGS := -DLOG_TAG=\"Sensors\" 30 sensors.cpp \
|
sensors.h | 28 #include <hardware/sensors.h> 46 * The SENSORS Module
|
/cts/tests/tests/hardware/src/android/hardware/cts/ |
SensorTest.java | 72 // Because we can't know every sensors unit details, so we can't assert 76 List<Sensor> sensors = mSensorManager.getSensorList(Sensor.TYPE_ALL); local 77 assertNotNull(sensors);
|
/device/moto/stingray/ |
Android.mk | 17 $(LOCAL_PATH)/sensors/Android.mk \
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/ |
AccelerometerTestActivity.java | 17 package com.android.cts.verifier.sensors;
|
/external/qemu/android/utils/ |
debug.h | 36 _VERBOSE_TAG(sensors, "emulated sensors") \
|
/frameworks/base/include/gui/ |
Sensor.h | 28 #include <hardware/sensors.h>
|
/frameworks/base/services/sensorservice/ |
LinearAccelerationSensor.cpp | 23 #include <hardware/sensors.h>
|
/frameworks/base/core/java/android/hardware/ |
SensorManager.java | 41 * sensors}. Get an instance of this class by calling 47 * Always make sure to disable sensors you don't need, especially when your 49 * hours. Note that the system will <i>not</i> disable sensors automatically when 166 * A constant that includes all sensors 491 // we've open the driver, we're ready to open the sensors 507 Log.e(TAG, "_sensors_data_poll() failed, we bail out: sensors=" + sensor); 560 // Only report accuracy for sensors that support it. 571 // For other sensors, just report the accuracy once 691 * @return available sensors. 717 * Use this method to get the list of available sensors of a certain type [all...] |
/cts/tests/tests/app/src/android/app/cts/ |
SystemFeaturesTest.java | 212 * Check that the sensor features reported by the PackageManager correspond to the sensors 288 List<Sensor> sensors = mSensorManager.getSensorList(expectedSensorType); local 289 List<String> sensorNames = new ArrayList<String>(sensors.size()); 290 for (Sensor sensor : sensors) { 293 boolean hasSensorType = !sensors.isEmpty(); 297 + " but SensorManager#getSensorList(" + expectedSensorType + ") shows sensors "
|