Searched defs:value (Results 76 - 100 of 128) sorted by relevance

123456

/hardware/ti/omap4xxx/camera/
H A DCameraParameters.cpp122 // Each value is indexed by the CameraProperties::CameraPropertyIndex enum
139 ssize_t CameraProperties::Properties::set(const char *prop, const char *value) argument
143 if(!value)
144 value = DEFAULT_VALUE;
146 return mProperties->replaceValueFor(String8(prop), String8(value));
149 ssize_t CameraProperties::Properties::set(const char *prop, int value) argument
153 sprintf(s_val, "%d", value);
160 String8 value = mProperties->valueFor(String8(prop)); local
161 return value.string();
/hardware/ti/omap4xxx/camera/OMXCameraAdapter/
H A DOMX3A.cpp471 char value[PROPERTY_VALUE_MAX]; local
472 if (property_get("camera.flash_off", value, NULL) &&
473 (!strcasecmp(value, "true") || !strcasecmp(value, "1"))) {
/hardware/ti/wlan/wl1271/platforms/os/linux/src/
H A Dosapi.c98 void os_setDebugOutputToLogger(TI_BOOL value) argument
100 bRedirectOutputToLogger = value;
376 RETURN: None - This had better work since there is not a return value to the user
392 RETURN: None - This had better work since there is not a return value to the user
411 RETURN: None - This had better work since there is not a return value to the user
867 /* Set msg length and format according to the biggest parameter value (8/16/32 bits) */
/hardware/invensense/libsensors_iio/
H A DMPLSensor.cpp752 float value; local
756 value = absinfo_x.value;
757 mPendingEvents[Accelerometer].data[0] = value * CONVERT_A_X;
758 value = absinfo_y.value;
759 mPendingEvents[Accelerometer].data[1] = value * CONVERT_A_Y;
760 value = absinfo_z.value;
761 mPendingEvents[Accelerometer].data[2] = value * CONVERT_A_
[all...]
/hardware/invensense/mlsdk/platform/include/linux/
H A Dmpu.h189 * column should have exactly 1 non-zero value.
214 unsigned char value; member in struct:ext_slave_read_trigger
290 * column should have exactly 1 non-zero value.
/hardware/qcom/audio/alsa_sound/
H A Dalsa_default.cpp125 char value[128]; local
169 property_get("persist.audio.handset.mic",value,"0");
170 strlcpy(mic_type, value, sizeof(mic_type));
171 property_get("persist.audio.fluence.mode",value,"0");
172 if (!strcmp("broadside", value)) {
214 int deviceName(alsa_handle_t *handle, unsigned flags, char **value) argument
225 ret = snd_use_case_get(handle->ucMgr, ident, (const char **)value);
226 ALOGD("Device value returned is %s", (*value));
1052 static status_t s_set_fm_vol(int value) argument
1063 s_set_lpa_vol(int value) argument
1743 s_set_compressed_vol(int value) argument
[all...]
/hardware/qcom/audio/libalsa-intf/
H A Dalsa_ucm.c252 * Get current value of the identifier
260 * value - Value pointer
265 const char **value)
282 *value = strdup(uc_mgr->card_ctxt_ptr->card_name);
284 *value = NULL;
292 *value = strdup(uc_mgr->card_ctxt_ptr->current_verb);
294 *value = NULL;
320 ALOGE("Invalid current verb value: %s - %d",
329 *value = NULL;
345 *value
263 snd_use_case_get(snd_use_case_mgr_t *uc_mgr, const char *identifier, const char **value) argument
463 snd_use_case_geti(snd_use_case_mgr_t *uc_mgr, const char *identifier, long *value) argument
1380 snd_use_case_set(snd_use_case_mgr_t *uc_mgr, const char *identifier, const char *value) argument
1605 snd_use_case_set_case(snd_use_case_mgr_t *uc_mgr, const char *identifier, const char *value, const char *usecase) argument
3711 snd_ucm_add_ident_to_list(struct snd_ucm_ident_node **head, const char *value) argument
3880 snd_ucm_del_ident_from_list(struct snd_ucm_ident_node **head, const char *value) argument
[all...]
/hardware/qcom/camera/QCamera/HAL/core/src/
H A DQCameraHWI_Still.cpp740 * the value of rotation.*/
1948 void QCameraStream_Snapshot::setModeLiveSnapshot(bool value) argument
1950 mModeLiveSnapshot = value;
1962 void QCameraStream_Snapshot::setFullSizeLiveshot(bool value) argument
1964 mFullLiveshot = value;
/hardware/qcom/camera/QCamera/stack/mm-camera-interface/inc/
H A Dmm_camera_interface.h168 void *value; member in struct:__anon505
239 /* set a parm�s current value */
243 /* get a parm�s current value */
254 * value of ext_image_mode is defined in msm_camera.h
301 /* set a parm�s current value */
307 /* get a parm�s current value */
/hardware/qcom/camera/QCamera/stack/mm-camera-interface/src/
H A Dmm_camera.c54 void *value);
58 void *value,
456 * we can get the value from capabilities.
1167 payload.value = p_value;
1196 payload.value = p_value;
1215 ctrl.value = effect;
1220 int32_t mm_camera_ctrl_set_auto_focus (mm_camera_obj_t *my_obj, int32_t value) argument
1228 if(value != 0 && value != 1) {
1229 CDBG("%s:boolean required, invalid value
1249 int32_t rc = 0, value; local
1600 mm_camera_util_private_s_ctrl(int32_t fd, uint32_t id, void* value) argument
1618 mm_camera_send_native_ctrl_cmd(mm_camera_obj_t * my_obj, cam_ctrl_type type, uint32_t length, void *value) argument
1628 mm_camera_send_native_ctrl_timeout_cmd(mm_camera_obj_t * my_obj, cam_ctrl_type type, uint32_t length, void *value, int timeout) argument
1743 mm_camera_util_s_ctrl(int32_t fd, uint32_t id, int32_t value) argument
1760 mm_camera_util_g_ctrl( int32_t fd, uint32_t id, int32_t *value) argument
[all...]
/hardware/qcom/display/libcopybit/
H A Dcopybit_c2d.cpp721 /** Set a parameter to value */
725 int value)
735 ctx->blitState.rotation = value<<16;
737 if(!value)
741 if (value < 0) value = 0;
742 if (value >= 256) value = 255;
744 ctx->blitState.global_alpha = value;
763 if((value
722 set_parameter_copybit( struct copybit_device_t *dev, int name, int value) argument
809 int value; local
[all...]
/hardware/qcom/media/mm-video/vidc/vdec/src/
H A Dh264_utils.cpp463 ALOGV("get_h264_nal_type - newFrame value %d\n",isNewFrame);
577 OMX_U32 value = 0; local
777 OMX_U32 value = 0, processed_bytes = 0; local
787 value = extract_bits(8);
788 payload_type += value;
790 } while (value == 0xFF);
793 value = extract_bits(8);
794 payload_size += value;
796 } while (value == 0xFF);
827 OMX_U32 value local
1055 OMX_U32 value = 0, scaling_matrix_limit; local
1132 OMX_U32 value = 0; local
1216 OMX_U32 value = 0, consumed_bytes = 3; local
[all...]
/hardware/ti/omap3/omx/video/src/openmax_il/video_decode/src/
H A DOMX_VideoDecoder.c1537 char value[PROPERTY_VALUE_MAX]; local
1538 property_get("debug.video.showfps", value, "0");
1539 mDebugFps = atoi(value);
2292 /* Set to sufficiently high value */
/hardware/ti/wlan/wl1271/stad/src/Data_link/
H A Drx.c389 * OUTPUT: pParamInfo - structure which include the value of
454 * pParamInfo - structure which include the value to set for
1967 * DESCRIPTION: Sets the ReAuth flag value
1970 * value - value to set the flag to
1976 void rxData_SetReAuthInProgress(TI_HANDLE hRxData, TI_BOOL value) argument
1980 TRACE1(pRxData->hReport, REPORT_SEVERITY_INFORMATION , "Set ReAuth flag to %d\n", value);
1982 pRxData->reAuthInProgress = value;
1988 * DESCRIPTION: Returns the ReAuth flag value
1994 * RETURNS: ReAuth flag value
[all...]
/hardware/ti/wlan/wl1271/wpa_supplicant_lib/
H A Ddriver_ti.c729 /* Update cached value */
1012 int idx, u32 value)
1020 iwr.u.param.value = value;
1024 wpa_printf(MSG_ERROR, "WEXT auth param %d value 0x%x - ",
1025 idx, value);
1317 int value, flags, ret = 0; local
1346 value = IW_AUTH_WPA_VERSION_DISABLED;
1352 value = IW_AUTH_WPA_VERSION_WPA2;
1355 value
1011 wpa_driver_tista_set_auth_param(struct wpa_driver_ti_data *drv, int idx, u32 value) argument
[all...]
/hardware/ti/wpan/tools/FM/service/src/jni/
H A DJFmTxNative.cpp47 int command, long value);
445 vt.value = FM_MUTE_OFF;
447 vt.value = FM_MUTE_ON;
699 vctrls.value = ptyCode;
731 vctrls.value = piCode;
806 vctrls.value = 122 - powerLevel;
817 ALOGE("Setting FM Tx Power level to ---> %d\n", 122 - vctrls.value);
858 int command, long value)
897 (jint)value);
905 (jint)value);
857 nativeJFmTx_Callback(long context, int status, int command, long value) argument
[all...]
H A DJFmTxNative.h202 __s32 value; member in union:v4l2_ext_control_kfmapp::__anon3256
/hardware/ti/wpan/tools/kfmapp/
H A Dkfmapp.c78 printf("e <val> set pre-emphasis filter value"
83 printf("i <val> set FM TX antenna impedance value (0 = 50, 1 = 200 and 2 = 500)\n");
84 printf("gi get FM TX antenna impedance value\n");*/
87 printf("3 <value> to set RDS Radio PI code\n");
88 printf("4 <value> to set RDS Radio PTY\n");
104 printf("b<value> switches Japan / Eur-Us (0=US/Eur & 1=Japan)\n");
116 printf("c<value> set rds af switch(0-OFF & 1=ON)\n");
137 printf("Failed to get FM Tx antenna impedence value\n");
141 printf("FM Tx antenna impedence value is --> %d\n",vctrl.value);
826 tinymix_set_value(struct mixer *mixer, unsigned int id, int value) argument
[all...]
/hardware/broadcom/wlan/bcm4329/dhdutil/
H A Dbcmutils.c567 ulong result, last_result = 0, value; local
600 (value = bcm_isdigit(*cp) ? *cp-'0' : bcm_toupper(*cp)-'A'+10) < base)
602 result = result*base + value;
963 * DSCP priority value. This is required for Linux APs because
965 * with the priority value in the vlan tag
1092 * The caller provides the initial value (either CRC8_INIT_VALUE
1093 * or the previous returned value) to allow for processing of
1095 * caller is responsible for complementing the final return value
1097 * return value of CRC8_GOOD_VALUE indicates a valid CRC.
1149 uint8 crc /* either CRC8_INIT_VALUE or previous return value */
[all...]
H A Ddhdu.c106 uint value; member in struct:__anon2
134 "\t<N> (other) - an sd_divisor value to request on activity timeout\n"},
195 "\tsrwrite <word-offset> <word-value> ...\n"
876 printf("required args: offset[/size] [value]\n");
900 sdreg.value = strtoul(argv[2], &ptr, 0);
902 printf("Bad value: %s\n", argv[2]);
990 fprintf(stderr, "Bad value: %s\n", argv[1]);
1102 fprintf(stderr, "invalid value %s\n", argv[1]);
1305 fprintf(stderr, "value %s is not an integer\n", *argv);
1346 * The input text file consists of lines of the form "<var>=<value>\
[all...]
/hardware/broadcom/wlan/bcmdhd/dhdutil/
H A Dbcmutils.c692 ulong result, last_result = 0, value; local
725 (value = bcm_isdigit(*cp) ? *cp-'0' : bcm_toupper(*cp)-'A'+10) < base) {
726 result = result*base + value;
1102 * DSCP priority value. This is required for Linux APs because
1104 * with the priority value in the vlan tag
1228 * The caller provides the initial value (either CRC8_INIT_VALUE
1229 * or the previous returned value) to allow for processing of
1231 * caller is responsible for complementing the final return value
1233 * return value of CRC8_GOOD_VALUE indicates a valid CRC.
1285 uint8 crc /* either CRC8_INIT_VALUE or previous return value */
[all...]
H A Ddhdu.c119 uint value; member in struct:__anon61
147 "\t<N> (other) - an sd_divisor value to request on activity timeout\n"},
209 "\tsrwrite <word-offset> <word-value> ...\n"
893 printf("required args: offset[/size] [value]\n");
917 sdreg.value = strtoul(argv[2], &ptr, 0);
919 printf("Bad value: %s\n", argv[2]);
1008 fprintf(stderr, "Bad value: %s\n", argv[1]);
1123 fprintf(stderr, "invalid value %s\n", argv[1]);
1326 fprintf(stderr, "value %s is not an integer\n", *argv);
1367 * The input text file consists of lines of the form "<var>=<value>\
[all...]
/hardware/invensense/mlsdk/mllite/
H A DmlFIFO.c189 * bit set in element. The value returned are the elements that should be sent
320 return INV_ERROR; // Bad value on ordering
378 return INV_ERROR; // Bad value on ordering
441 } value; local
443 value.u32 = fifo_obj.decoded[REF_QUANT_ACCEL + kk];
447 temp.u10 = value.u32 & 0x3ff;
448 value.s32 -= temp.s10;
451 value.s32 = value.s32 / 1024;
452 temp.u10 = value
[all...]
/hardware/libhardware_legacy/audio/
H A DAudioPolicyManagerBase.cpp478 void AudioPolicyManagerBase::setSystemProperty(const char* property, const char* value) argument
480 ALOGV("setSystemProperty() property %s, value %s", property, value);
999 // if device is AUDIO_DEVICE_OUT_DEFAULT set default value and
1420 String8 value; local
1439 if (param.get(String8("test_cmd_policy_direct"), value) == NO_ERROR) {
1441 if (value == "false") {
1443 } else if (value == "true") {
1452 if (param.get(String8("test_cmd_policy_format"), value) == NO_ERROR) {
1455 if (value
1637 char *value; local
3335 uint32_t value; member in struct:android_audio_legacy::StringToEnum
[all...]
/hardware/msm7k/libaudio-qsd8k/
H A DAudioHardware.cpp185 char value[PROPERTY_VALUE_MAX]; local
187 property_get("media.a1026.enableA1026", value, "1");
188 enable1026 = atoi(value);
191 property_get("media.a1026.nsForVoiceRec", value, "0");
192 vr_uses_ns = atoi(value);
196 property_get("htc.audio.alt.enable", value, "0");
197 alt_enable = atoi(value);
201 property_get("htc.audio.hac.enable", value, "0");
202 hac_enable = atoi(value);
382 String8 value; local
513 String8 value; local
1748 String8 value; local
2007 String8 value; local
[all...]

Completed in 457 milliseconds

123456