Searched defs:value (Results 1 - 25 of 148) sorted by relevance

123456

/hardware/samsung_slsi/exynos5/mobicore/daemon/Registry/Public/
H A DMobiCoreRegistry.h50 uint8_t value[]; member in struct:__anon1881
/hardware/libhardware_legacy/vibrator/
H A Dvibrator.c46 char value[20]; local
58 nwr = sprintf(value, "%d\n", timeout_ms);
59 ret = write(fd, value, nwr);
/hardware/akm/AK8975_FS/libsensors/
H A DSensorBase.cpp70 const char *path, const char *value, int bytes)
81 amt = write(fd, value, bytes);
69 write_sys_attribute( const char *path, const char *value, int bytes) argument
H A DAkmSensor.cpp209 processEvent(event->code, event->value);
273 void AkmSensor::processEvent(int code, int value) argument
278 mPendingEvents[Accelerometer].acceleration.x = value * CONVERT_A;
282 mPendingEvents[Accelerometer].acceleration.y = value * CONVERT_A;
286 mPendingEvents[Accelerometer].acceleration.z = value * CONVERT_A;
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;
308 mPendingEvents[Orientation].orientation.azimuth = value * CONVERT_
[all...]
H A DAdxlSensor.cpp31 #define ADXL_UNIT_CONVERSION(value) ((value) * GRAVITY_EARTH / (256.0f))
70 mPendingEvent.acceleration.x = ADXL_UNIT_CONVERSION(absinfo.value);
73 mPendingEvent.acceleration.y = ADXL_UNIT_CONVERSION(absinfo.value);
76 mPendingEvent.acceleration.z = ADXL_UNIT_CONVERSION(absinfo.value);
200 float value = event->value; local
202 mPendingEvent.acceleration.x = ADXL_UNIT_CONVERSION(value);
204 mPendingEvent.acceleration.y = ADXL_UNIT_CONVERSION(value);
206 mPendingEvent.acceleration.z = ADXL_UNIT_CONVERSION(value);
[all...]
H A DKionixSensor.cpp34 #define KIONIX_UNIT_CONVERSION(value) ((value) * GRAVITY_EARTH / (1024.0f))
66 mPendingEvent.acceleration.x = KIONIX_UNIT_CONVERSION(absinfo.value);
69 mPendingEvent.acceleration.y = KIONIX_UNIT_CONVERSION(absinfo.value);
72 mPendingEvent.acceleration.z = KIONIX_UNIT_CONVERSION(absinfo.value);
178 float value = event->value; local
180 mPendingEvent.acceleration.x = KIONIX_UNIT_CONVERSION(value);
182 mPendingEvent.acceleration.y = KIONIX_UNIT_CONVERSION(value);
184 mPendingEvent.acceleration.z = KIONIX_UNIT_CONVERSION(value);
[all...]
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
H A Dsdiovar.h34 int value; member in struct:sdreg
/hardware/qcom/audio/legacy/libalsa-intf/
H A Damix.c55 unsigned value; local
88 mixer_ctl_get(ctl, &value);
H A Dalsaucm_test.c138 " get IDENTIFIER get string value\n"
139 " geti IDENTIFIER get integer value\n"
140 " set IDENTIFIER VALUE set string value\n"
166 char *identifier = NULL, *value = NULL; local
169 command = strtok_r(cmdStr, " ", &value);
170 identifier = strtok_r(NULL, " ", &value);
173 fprintf(stderr, "NULL pointer encountered. Invalid value for command");
191 fprintf(stderr, "NULL pointer encountered. Invalid value for identifier");
283 err = snd_use_case_set(uc_mgr, identifier, value);
285 fprintf(stderr, "%s: error failed to set %s=%s: %d\n", cmd->cmd_str, identifier, value, er
[all...]
/hardware/qcom/display/msm8960/libhwcomposer/
H A Dhwc_qclient.cpp53 status_t QClient::notifyCallback(uint32_t msg, uint32_t value) { argument
56 securing(value);
59 unsecuring(value);
/hardware/qcom/display/msm8960/libqservice/
H A DIQClient.cpp44 virtual status_t notifyCallback(uint32_t msg, uint32_t value) { argument
48 data.writeInt32(value);
66 uint32_t value = data.readInt32(); local
67 notifyCallback(msg, value);
/hardware/qcom/display/msm8974/libhwcomposer/
H A Dhwc_qclient.cpp53 status_t QClient::notifyCallback(uint32_t msg, uint32_t value) { argument
56 securing(value);
59 unsecuring(value);
H A Dhwc_ad.cpp75 static void adWrite(const int& value) { argument
83 snprintf(opStr, sizeof(opStr), "%d", value);
87 __func__, value, strerror(errno));
91 ALOGD_IF(DEBUG, "%s: Wrote %d to ad", __func__, value);
/hardware/qcom/display/msm8974/libqservice/
H A DIQClient.cpp44 virtual status_t notifyCallback(uint32_t msg, uint32_t value) { argument
48 data.writeInt32(value);
66 uint32_t value = data.readInt32(); local
67 notifyCallback(msg, value);
/hardware/qcom/display/msm8x26/libhwcomposer/
H A Dhwc_qclient.cpp53 status_t QClient::notifyCallback(uint32_t msg, uint32_t value) { argument
56 securing(value);
59 unsecuring(value);
/hardware/qcom/display/msm8x26/libqservice/
H A DIQClient.cpp44 virtual status_t notifyCallback(uint32_t msg, uint32_t value) { argument
48 data.writeInt32(value);
66 uint32_t value = data.readInt32(); local
67 notifyCallback(msg, value);
/hardware/samsung_slsi/exynos5/mobicore/common/MobiCore/inc/
H A DmcUuid.h41 uint8_t value[16]; /**< Value of the UUID. */ member in struct:__anon1855
44 /** UUID value used as free marker in service provider containers. */
/hardware/ti/wpan/tools/FM/FmRadioIf/src/java/com/ti/core/
H A DJFmContext.java23 private long value = 0; field in class:JFmContext
28 value = INVALID_CONTEXT_VALUE;
32 value = contextValue;
38 return (value == ((JFmContext) otherContextAsObject).getValue());
46 return (int) value;
50 return value;
53 public final void setValue(int value) { argument
54 Log.d("JFmContext()", "setValue: setValue called, value:" + value);
55 this.value
[all...]
/hardware/qcom/audio/legacy/alsa_sound/
H A DALSAControl.cpp54 status_t ALSAControl::get(const char *name, unsigned int &value, int index) argument
67 mixer_ctl_get(ctl, &value);
71 status_t ALSAControl::set(const char *name, unsigned int value, int index) argument
75 ALOGD("set:: name %s value %d index %d", name, value, index);
87 ret = mixer_ctl_set(ctl, value);
91 status_t ALSAControl::set(const char *name, const char *value) argument
95 ALOGD("set:: name %s value %s", name, value);
107 ret = mixer_ctl_select(ctl, value);
[all...]
H A DALSAStreamOps.cpp242 String8 value; local
245 if (param.get(key, value) == NO_ERROR) {
251 if (param.get(key, value) == NO_ERROR) {
261 if (param.get(key, value) == NO_ERROR) {
264 value = String8();
282 value += (first ? append : String8("|") + append);
289 param.add(key, value);
366 // If the "routes" value does not map to a valid device, the default playback
/hardware/libhardware/tests/camera2/
H A DCameraMetadataTests.cpp99 char value[PROPERTY_VALUE_MAX]; local
100 property_get("ro.build.id", value, "");
101 std::string str_value(value);
/hardware/qcom/msm8960/kernel-headers/media/
H A Dmsm_gestures.h50 void *value; member in struct:msm_ges_ctrl_cmd
/hardware/qcom/msm8960/original-kernel-headers/media/
H A Dmsm_gestures.h55 void *value; member in struct:msm_ges_ctrl_cmd
/hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
H A Dperf_config.c232 * <value>, it returns the <value>. Otherwise, it returns NULL
255 /* skip leading spaces before value */
258 /* if reached the end of line, return NULL; otherwise, return value */
266 * Arg2 configuration value
268 * Effects Assigns the value to the configuration member.
274 /* delete any prior value */
281 /* set new value unless it is NULL */
294 * Arg2 configuration value (string)
296 * Effects Assigns the integer value o
345 char const *value = get_value_if_matches(line, argument); local
375 char const *value = get_value_if_matches(line, argument); local
[all...]
/hardware/ti/omap3/dspbridge/inc/
H A Ddynamic_loader.h233 LDR_ADDR value; member in struct:dynload_symbol

Completed in 8873 milliseconds

123456