HomeSort by relevance Sort by last modified time
    Searched refs:sensor (Results 301 - 325 of 448) sorted by null

<<1112131415161718

  /hardware/invensense/6515/libsensors_iio/software/simple_apps/devnode_parser/
iio_utils.h 596 int *counter, char *sensor, int en)
615 strcat(pattern, sensor);
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/mpu_iio/
iio_utils.h 596 int *counter, char *sensor, int en)
615 strcat(pattern, sensor);
  /development/ndk/platforms/android-17/samples/Teapot/jni/
TeapotNativeActivity.cpp 23 #include <android/sensor.h>
324 //Sensor handlers
337 // If a sensor has data, process it now.
  /development/ndk/platforms/android-18/samples/MoreTeapots/jni/
MoreTeapotsNativeActivity.cpp 27 #include <android/sensor.h>
335 //Sensor handlers
348 // If a sensor has data, process it now.
  /frameworks/base/packages/SystemUI/src/com/android/systemui/analytics/
DataCollector.java 21 import android.hardware.Sensor;
40 * Tracks touch, sensor and phone events when the lockscreen is on. If the phone is unlocked
186 public void onAccuracyChanged(Sensor sensor, int accuracy) {
  /frameworks/base/services/core/java/com/android/server/am/
BatteryStatsService.java 487 public void noteStartSensor(int uid, int sensor) {
490 mStats.noteStartSensorLocked(uid, sensor);
494 public void noteStopSensor(int uid, int sensor) {
497 mStats.noteStopSensorLocked(uid, sensor);
    [all...]
  /hardware/libhardware/tests/hardware/
struct-offset.cpp 71 CHECK_MEMBER_AT(sensors_event_t, sensor, 4, 4);
  /ndk/build/tools/
dev-platform-import.sh 428 android/sensor.h \
dev-system-import.sh 618 android/sensor.h \
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
InCallActivity.java 183 // TODO(klp): Do we need to add this back when prox sensor is not available?
816 final ProximitySensor sensor = InCallPresenter.getInstance().getProximitySensor(); local
    [all...]
  /platform_testing/libraries/google-app-camera-helper/src/android/platform/test/helpers/
GoogleCameraHelperImpl.java 182 // Choose sensor size. It's okay to timeout. These dialog screens might not exist..
183 UiObject2 sensor = mDevice.wait(Until.findObject( local
185 if (sensor != null) {
186 sensor.click();
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/
ItsService.java 35 import android.hardware.Sensor;
186 public Sensor sensor; field in class:ItsService.MySensorEvent
192 // For capturing motion sensor traces.
194 private Sensor mAccelSensor = null;
195 private Sensor mMagSensor = null;
196 private Sensor mGyroSensor = null;
228 mAccelSensor = mSensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER);
229 mMagSensor = mSensorManager.getDefaultSensor(Sensor.TYPE_MAGNETIC_FIELD);
230 mGyroSensor = mSensorManager.getDefaultSensor(Sensor.TYPE_GYROSCOPE)
    [all...]
  /frameworks/base/services/core/java/com/android/server/
AnyMotionDetector.java 19 import android.hardware.Sensor;
84 private Sensor mAccelSensor;
116 mAccelSensor = mSensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER);
279 public void onAccuracyChanged(Sensor sensor, int accuracy) {
  /external/replicaisland/src/com/replica/replicaisland/
AndouKun.java 28 import android.hardware.Sensor;
322 Sensor orientation = mSensorManager.getDefaultSensor(Sensor.TYPE_ORIENTATION);
723 public void onAccuracyChanged(Sensor sensor, int accuracy) {
731 if (event.sensor.getType() == Sensor.TYPE_ORIENTATION) {
  /frameworks/base/core/java/com/android/internal/os/
BatteryStatsImpl.java 5948 Uid.Sensor sensor = mSensorStats.valueAt(ise); local
6153 Uid.Sensor sensor = new Sensor(mBsi, this, sensorNumber); local
    [all...]
  /device/generic/goldfish/sensors/
sensors_qemu.c 50 /** SENSOR IDS AND NAMES
131 ** This one is used to read sensor data from the hardware.
164 * to enable the acceleration sensor.
167 * new sensor events after the activate() call in 2).
206 /* Pick up one pending sensor event. On success, this returns the sensor
220 event->sensor = i;
230 E("No sensor to return!!! pendingSensors=0x%08x", d->pendingSensors);
236 /* Block until new sensor events are reported by the emulator, or if a
371 /* "sync:<time>" is sent after a series of sensor events
    [all...]
  /frameworks/base/services/core/java/com/android/server/display/
AutomaticBrightnessController.java 25 import android.hardware.Sensor;
58 // How long the current sensor reading is assumed to be valid beyond the current time.
76 // The sensor manager.
79 // The light sensor, or null if not available or needed.
80 private final Sensor mLightSensor;
94 // Light sensor event rate in milliseconds.
98 // for debouncing the light sensor. Different constants are used to debounce the light sensor
106 // brightness based on the current sensor reads. If false, the controller will collect more data
118 // the light sensor to warm-up in milliseconds
    [all...]
DisplayPowerController.java 27 import android.hardware.Sensor;
52 * Handles the proximity sensor, light sensor, and animations between states
98 // Proximity sensor debounce delay in milliseconds for positive or negative transitions.
126 // The sensor manager.
135 // The proximity sensor, or null if not available or needed.
136 private Sensor mProximitySensor;
156 // True if should use light sensor to automatically determine doze screen brightness.
168 // True if a request has been made to wait for the proximity sensor to go negative.
198 // True if the device should wait for negative proximity sensor befor
    [all...]
  /frameworks/native/services/sensorservice/
SensorDevice.cpp 58 ALOGE(">>>> WARNING <<< Upgrade sensor HAL to version 1_3");
172 // This is the first connection, we need to activate the underlying h/w sensor.
184 // This is the last connection, we need to de-activate the underlying h/w sensor.
189 // Call batch for this sensor with the previously calculated best effort
190 // batch_rate and timeout. One of the apps has unregistered for sensor
202 // sensor wasn't enabled for this ident
215 ALOGE_IF(err, "Error %s sensor %d (%s)", enabled ? "activating" : "disabling", handle,
219 // Failure when enabling the sensor. Clean up on failure.
265 // Find the minimum of all timeouts and batch_rates for this sensor.
290 ALOGE("sensor batch failed %p %d %d %" PRId64 " %" PRId64 " err=%s"
    [all...]
  /external/skia/platform_tools/android/apps/visualbenchsdl/src/main/java/org/libsdl/app/
SDLActivity.java     [all...]
  /device/google/dragon/recovery/updater/
ec_commands.h 138 * The default value a temperature sensor will return when it is present but
262 * register determines which sensor is affected by the THRESHOLD and COMMIT
268 * which sensor(s) are responsible. Each reading of the ID register clears and
269 * returns one sensor ID that has crossed one of its threshold (in either
271 * have tripped". Setting or enabling the thresholds for a sensor will clear
272 * the unread event count for that sensor.
279 * bit 0 selects the threshold index for the chosen sensor (0/1)
288 * Set the thresholds for sensor 2 to 50 C and 60 C:
289 * write 2 to [0x05] -- select temp sensor 2
296 * write 2 to [0x05] -- select temp sensor
1898 struct ec_response_motion_sensor_data sensor[0]; member in struct:ec_response_motion_sense::__anon3174::__anon3175
    [all...]
  /external/robolectric/v3/runtime/
shadows-core-3.1-SNAPSHOT-18.jar 
shadows-core-3.1-SNAPSHOT-19.jar 
shadows-core-3.1-SNAPSHOT-21.jar 
shadows-core-3.1-SNAPSHOT-22.jar 

Completed in 1568 milliseconds

<<1112131415161718