Home
last modified time | relevance | path

Searched refs:w_cnt_total (Results 1 – 1 of 1) sorted by relevance

/hal_espressif-3.7.0/components/bt/common/osi/
Dconfig.c406 int w_cnt, w_cnt_total = 0; in config_save() local
415 if(w_cnt_total + w_cnt > config_size) { in config_save()
416 …%d) is larger than buffer size (config_size = %d).", __func__, (w_cnt + w_cnt_total), config_size); in config_save()
420 …SI_TRACE_DEBUG("section name: %s, w_cnt + w_cnt_total = %d\n", section->name, w_cnt + w_cnt_total); in config_save()
421 memcpy(buf + w_cnt_total, line, w_cnt); in config_save()
422 w_cnt_total += w_cnt; in config_save()
433 if(w_cnt_total + w_cnt > config_size) { in config_save()
434 … %d) is larger than buffer size.(config_size = %d)", __func__, (w_cnt + w_cnt_total), config_size); in config_save()
438 OSI_TRACE_DEBUG("%s, w_cnt + w_cnt_total = %d", __func__, w_cnt + w_cnt_total); in config_save()
439 memcpy(buf + w_cnt_total, line, w_cnt); in config_save()
[all …]