Lines Matching refs:store_value
109 int32_t *store_value = cfg_value_ptr(store, meta); in cfg_int_item_handler() local
115 meta->name, str_value, status, *store_value); in cfg_int_item_handler()
126 *store_value = value; in cfg_int_item_handler()
139 *store_value = __cfg_clamp(value, meta->min, meta->max); in cfg_int_item_handler()
144 meta->name, value, meta->min, meta->max, *store_value); in cfg_int_item_handler()
153 uint32_t *store_value = cfg_value_ptr(store, meta); in cfg_uint_item_handler() local
169 meta->name, str_value, status, *store_value); in cfg_uint_item_handler()
180 *store_value = value; in cfg_uint_item_handler()
193 *store_value = __cfg_clamp(value, min, max); in cfg_uint_item_handler()
198 meta->name, value, min, max, *store_value); in cfg_uint_item_handler()
207 bool *store_value = cfg_value_ptr(store, meta); in cfg_bool_item_handler() local
209 status = qdf_bool_parse(str_value, store_value); in cfg_bool_item_handler()
214 meta->name, str_value, status, *store_value ? "true" : "false"); in cfg_bool_item_handler()
222 char *store_value = cfg_value_ptr(store, meta); in cfg_string_item_handler() local
236 meta->name, str_value, store_value); in cfg_string_item_handler()
244 meta->name, str_value, store_value); in cfg_string_item_handler()
248 qdf_str_lcopy(store_value, str_value, meta->max + 1); in cfg_string_item_handler()
257 struct qdf_mac_addr *store_value = cfg_value_ptr(store, meta); in cfg_mac_item_handler() local
259 status = qdf_mac_parse(str_value, store_value); in cfg_mac_item_handler()
265 QDF_MAC_ADDR_REF(store_value->bytes)); in cfg_mac_item_handler()
274 struct qdf_ipv4_addr *store_value = cfg_value_ptr(store, meta); in cfg_ipv4_item_handler() local
276 status = qdf_ipv4_parse(str_value, store_value); in cfg_ipv4_item_handler()
282 QDF_IPV4_ADDR_ARRAY(store_value->bytes)); in cfg_ipv4_item_handler()
291 struct qdf_ipv6_addr *store_value = cfg_value_ptr(store, meta); in cfg_ipv6_item_handler() local
293 status = qdf_ipv6_parse(str_value, store_value); in cfg_ipv6_item_handler()
299 QDF_IPV6_ADDR_ARRAY(store_value->bytes)); in cfg_ipv6_item_handler()