Lines Matching refs:nvh
127 nvs_handle nvh;
142 ESP_ERROR_CHECK(nvs_open(filename, NVS_READWRITE, &nvh));
145 n = nvs_get_str(nvh, buf, result, &s);
146 nvs_close(nvh);
159 nvs_handle nvh;
162 if (nvs_open("lws-station", NVS_READWRITE, &nvh)) {
167 n = nvs_set_blob(nvh, filename, buf, len);
169 nvs_commit(nvh);
171 nvs_close(nvh);
195 nvs_handle nvh;
199 if (nvs_open("lws-station", NVS_READWRITE, &nvh)) {
204 ESP_ERROR_CHECK(nvs_open("lws-station", NVS_READWRITE, &nvh));
205 if (nvs_get_blob(nvh, filename, NULL, &s) != ESP_OK)
210 n = nvs_get_blob(nvh, filename, buf, &s);
212 nvs_close(nvh);
222 nvs_close(nvh);