HomeSort by relevance Sort by last modified time
    Searched full:config_value (Results 1 - 10 of 10) 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/chromium_org/components/cronet/android/
org_chromium_net_UrlRequestContext.cc 80 scoped_ptr<base::Value> config_value(base::JSONReader::Read(config_string));
81 if (!config_value || !config_value->IsType(base::Value::TYPE_DICTIONARY)) {
89 if (!converter.Convert(*config_value, context_config.get())) {
90 DLOG(ERROR) << "Bad Config: " << config_value;
  /external/chromium_org/remoting/host/win/
elevated_controller.cc 213 scoped_ptr<base::Value> config_value(base::JSONReader::Read(content));
214 if (!config_value.get()) {
218 if (!config_value->GetAsDictionary(&config_dict)) {
449 scoped_ptr<base::Value> config_value(base::JSONReader::Read(config_str));
450 if (!config_value.get()) {
454 if (!config_value->GetAsDictionary(&config_dict)) {
  /external/chromium_org/net/tools/net_watcher/
net_watcher.cc 61 scoped_ptr<base::Value> config_value(config.ToValue());
63 base::JSONWriter::Write(config_value.get(), &str);
  /external/chromium_org/third_party/WebKit/ManualTests/forms/
calendar-picker.html 74 <input type="text" name="value" id="config_value">
147 $("config_value").value = config.value;
  /external/libnfc-nxp/src/
phHciNfc.h 686 * \param[in] config_value config_value is the value for the configuring
703 uint8_t config_value
phHciNfc.c     [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...]
  /external/chromium_org/third_party/libusb/src/libusb/os/
darwin_usb.c 467 static int get_configuration_index (struct libusb_device *dev, int config_value) {
481 if (desc->bConfigurationValue == config_value)
    [all...]

Completed in 436 milliseconds