Lines Matching defs:si
30 lws_settings_plat_get(lws_settings_instance_t *si, const char *name,
35 n = nvs_flash_init_partition((const char *)si->opaque_plat);
41 if (nvs_open_from_partition((const char *)si->opaque_plat,
43 (nvs_handle_t *)&si->handle_plat))
46 n = nvs_get_blob((nvs_handle_t)si->handle_plat,
49 nvs_close((nvs_handle_t)si->handle_plat);
55 lws_settings_plat_set(lws_settings_instance_t *si, const char *name,
58 int n = nvs_flash_init_partition((const char *)si->opaque_plat);
64 if (nvs_open_from_partition((const char *)si->opaque_plat,
66 (nvs_handle_t *)&si->handle_plat))
69 n = nvs_set_blob((nvs_handle_t)si->handle_plat, name, src, len);
71 nvs_commit((nvs_handle_t)si->handle_plat);
72 nvs_close((nvs_handle_t)si->handle_plat);