HomeSort by relevance Sort by last modified time
    Searched full:magnetic (Results 1 - 25 of 97) sorted by null

1 2 3 4

  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/
message_layer.h 28 because of a magnetic disturbance */
31 because of a magnetic disturbance */
results_holder.h 56 /* Magnetic Field Parameters*/
  /external/kernel-headers/original/linux/
akm8973.h 28 #define ECS_IOCTL_APP_SET_MVFLAG _IOW(AKMIO, 0x19, short) /* Set raw magnetic vector flag */
29 #define ECS_IOCTL_APP_GET_MVFLAG _IOR(AKMIO, 0x1A, short) /* Get raw magnetic vector flag */
akm8975.h 70 #define ECS_IOCTL_APP_SET_MVFLAG _IOW(AKMIO, 0x19, short) /* Set raw magnetic vector flag */
71 #define ECS_IOCTL_APP_GET_MVFLAG _IOR(AKMIO, 0x1A, short) /* Get raw magnetic vector flag */
akm8976.h 70 #define ECS_IOCTL_APP_SET_MVFLAG _IOW(AKMIO, 0x19, short) /* Set raw magnetic vector flag */
71 #define ECS_IOCTL_APP_GET_MVFLAG _IOR(AKMIO, 0x1A, short) /* Get raw magnetic vector flag */
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/
SensorTestInformation.java 60 // return "Magnetic Field Uncalibrated";
86 name = "Magnetic Field";
122 name = "Magnetic Field Uncalibrated";
  /hardware/akm/AK8975_FS/akmdfs/
AKFS_APIs.c 111 /* Initialize magnetic status */
147 @param[out] vx X axis value of magnetic field vector.
148 @param[out] vy Y axis value of magnetic field vector.
149 @param[out] vz Z axis value of magnetic field vector.
150 @param[out] accuracy Accuracy of magnetic field vector.
201 /* Then, a magnetic vector, the unit is uT, is stored in mfv_hvbuf. */
229 /* Check the size of magnetic vector */
342 follow the Android definition. Before this function is called, magnetic
AKFS_CSpec.h 26 /* The number of magnetic/acceleration data to be averaged. */
AK8975Driver.c 29 This function opens both device drivers of magnetic sensor and acceleration
38 /* Open magnetic sensor's device driver. */
50 This function closes both device drivers of magnetic sensor and acceleration
169 Acquire magnetic data from AK8975. If measurement is not done, this function
173 @param[out] data A magnetic data array. The size should be larger than #SENSOR_DATA_SIZE.
  /hardware/invensense/60xx/libsensors_iio/software/core/mllite/
results_holder.c 36 long local_field[3]; /**< local earth's magnetic field */
37 long mag_scale[3]; /**< scale factor to apply to magnetic field reading */
46 int large_mag_field; /**< Flag describing if there is a large magnetic field */
89 /** Returns non-zero if there is a large magnetic field. See inv_set_large_mag_field() for setting this variable.
90 * @return Returns non-zero if there is a large magnetic field.
97 /** Set to non-zero if there as a large magnetic field. See inv_get_large_mag_field() for getting this variable.
98 * @param[in] state value to set for magnetic field strength. Should be non-zero if it is large.
157 /** Sets the local earth's magnetic field
158 * @param[in] data Local earth's magnetic field in uT scaled by 2^16.
167 /** Gets the local earth's magnetic fiel
    [all...]
results_holder.h 50 /* Magnetic Field Parameters*/
  /frameworks/base/core/java/android/hardware/
GeomagneticField.java 22 * Estimates magnetic field at a given point on
23 * Earth, and in particular, to compute the magnetic declination from true
26 * <p>This uses the World Magnetic Model produced by the United States National
34 // The magnetic field at a given point, in nonoteslas in geodetic
51 // NOAA Technical Report: The US/UK World Magnetic Model for 2010-2015
122 * Estimate the magnetic field at a given point and time.
190 // We now compute the magnetic field strength given the geocentric
191 // location. The magnetic field is the derivative of the potential
193 // World Magnetic Model for 2010-2015 for the derivation.
242 * @return The X (northward) component of the magnetic field in nanoteslas
    [all...]
  /hardware/akm/AK8975_FS/akmdfs/AKFS_APIs_8975/
AKFS_AK8975.c 37 /* magnetic */
  /hardware/akm/AK8975_FS/libsensors/
AkmSensor.cpp 53 mPendingEvents[MagneticField].magnetic.status = SENSOR_STATUS_ACCURACY_HIGH;
291 mPendingEvents[MagneticField].magnetic.x = value * CONVERT_M;
295 mPendingEvents[MagneticField].magnetic.y = value * CONVERT_M;
299 mPendingEvents[MagneticField].magnetic.z = value * CONVERT_M;
303 mPendingEvents[MagneticField].magnetic.status = value;
sensors.h 73 /* conversion of magnetic data to uT units */
  /device/generic/goldfish/sensors/
sensors_qemu.c 75 SENSOR_(MAGNETIC_FIELD,"magnetic-field") \
341 /* "magnetic:<x>:<y>:<z>" is sent for the params of the magnetic field */
342 if (sscanf(buff, "magnetic:%g:%g:%g", params+0, params+1, params+2) == 3) {
344 data->sensors[ID_MAGNETIC_FIELD].magnetic.x = params[0];
345 data->sensors[ID_MAGNETIC_FIELD].magnetic.y = params[1];
346 data->sensors[ID_MAGNETIC_FIELD].magnetic.z = params[2];
347 data->sensors[ID_MAGNETIC_FIELD].magnetic.status = SENSOR_STATUS_ACCURACY_HIGH;
499 { .name = "Goldfish 3-axis Magnetic field sensor",
  /external/qemu/android/
hw-sensors.c 115 MagneticField magnetic; member in union:__anon26513::__anon26514
153 * magnetic-field:<x>:<y>:<z>
309 /* NOTE: sensors HAL expects "magnetic", not "magnetic-field" name here. */
310 snprintf(buffer, sizeof buffer, "magnetic:%g:%g:%g",
311 sensor->u.magnetic.x,
312 sensor->u.magnetic.y,
313 sensor->u.magnetic.z);
534 qemu_put_float(f, s->u.magnetic.x);
535 qemu_put_float(f, s->u.magnetic.y)
    [all...]
hw-sensors.h 43 SENSOR_(MAGNETIC_FIELD,"magnetic-field") \
  /hardware/invensense/60xx/libsensors_iio/
sensors.h 92 // conversion of magnetic data to uT units
  /hardware/invensense/65xx/libsensors_iio/
sensors.h 99 // conversion of magnetic data to uT units
  /development/ndk/platforms/android-9/include/android/
sensor.h 81 /* Maximum magnetic field on Earth's surface in uT */
83 /* Minimum magnetic field on Earth's surface in uT*/
120 ASensorVector magnetic; member in union:ASensorEvent::__anon1514
  /frameworks/native/include/android/
sensor.h 81 /* Maximum magnetic field on Earth's surface in uT */
83 /* Minimum magnetic field on Earth's surface in uT*/
145 ASensorVector magnetic; member in union:ASensorEvent::__anon32221::__anon32222
  /prebuilts/ndk/5/platforms/android-9/arch-arm/usr/include/android/
sensor.h 81 /* Maximum magnetic field on Earth's surface in uT */
83 /* Minimum magnetic field on Earth's surface in uT*/
120 ASensorVector magnetic; member in union:ASensorEvent::__anon45928
  /prebuilts/ndk/6/platforms/android-9/arch-arm/usr/include/android/
sensor.h 81 /* Maximum magnetic field on Earth's surface in uT */
83 /* Minimum magnetic field on Earth's surface in uT*/
120 ASensorVector magnetic; member in union:ASensorEvent::__anon46903
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/android/
sensor.h 81 /* Maximum magnetic field on Earth's surface in uT */
83 /* Minimum magnetic field on Earth's surface in uT*/
120 ASensorVector magnetic; member in union:ASensorEvent::__anon46955

Completed in 3208 milliseconds

1 2 3 4