HomeSort by relevance Sort by last modified time
    Searched defs:config_value (Results 1 - 3 of 3) sorted by null

  /hardware/qcom/gps/msm8960/utils/
loc_cfg.cpp 128 config_value: value to store in the entry if the parameter names match
139 void loc_set_config_entry(loc_param_s_type* config_entry, loc_param_v_type* config_value)
141 if(NULL == config_entry || NULL == config_value)
147 if (strcmp(config_entry->param_name, config_value->param_name) == 0 &&
153 if (strcmp(config_value->param_str_value, "NULL") == 0)
159 config_value->param_str_value,
171 *((int *)config_entry->param_ptr) = config_value->param_int_value;
173 LOC_LOGD("%s: PARAM %s = %d", __FUNCTION__, config_entry->param_name, config_value->param_int_value);
181 *((double *)config_entry->param_ptr) = config_value->param_double_value;
183 LOC_LOGD("%s: PARAM %s = %f", __FUNCTION__, config_entry->param_name, config_value->param_double_value)
223 loc_param_v_type config_value; local
    [all...]
  /hardware/qcom/gps/utils/
loc_cfg.cpp 84 config_value: value to store in the entry if the parameter names match
95 int loc_set_config_entry(loc_param_s_type* config_entry, loc_param_v_type* config_value)
98 if(NULL == config_entry || NULL == config_value)
104 if (strcmp(config_entry->param_name, config_value->param_name) == 0 &&
110 if (strcmp(config_value->param_str_value, "NULL") == 0)
116 config_value->param_str_value,
130 *((int *)config_entry->param_ptr) = config_value->param_int_value;
133 config_entry->param_name, config_value->param_int_value);
142 *((double *)config_entry->param_ptr) = config_value->param_double_value;
145 config_entry->param_name, config_value->param_double_value)
190 loc_param_v_type config_value; local
380 loc_param_v_type config_value; local
    [all...]
  /external/libusb/libusb/os/
darwin_usb.c 360 static int get_configuration_index (struct libusb_device *dev, int config_value) {
374 if (libusb_le16_to_cpu (desc->bConfigurationValue) == config_value)
384 UInt8 config_value; local
388 kresult = (*(priv->device))->GetConfiguration (priv->device, &config_value);
392 config_index = get_configuration_index (dev, config_value);
    [all...]

Completed in 1041 milliseconds