Home
last modified time | relevance | path

Searched refs:nvs_get_blob (Results 1 – 25 of 26) sorted by relevance

12

/hal_espressif-3.6.0/examples/storage/nvs_rw_blob/main/
Dnvs_blob_example_main.c82 err = nvs_get_blob(my_handle, "run_time", NULL, &required_size); in save_run_time()
88 err = nvs_get_blob(my_handle, "run_time", run_time, &required_size); in save_run_time()
135 err = nvs_get_blob(my_handle, "run_time", NULL, &required_size); in print_what_saved()
142 err = nvs_get_blob(my_handle, "run_time", run_time, &required_size); in print_what_saved()
/hal_espressif-3.6.0/components/nvs_flash/test_nvs_host/
Dtest_nvs.cpp981 TEST_ESP_ERR(nvs_get_blob(net80211_handle, "sta.ssid", ssid, &size), ESP_ERR_NVS_NOT_FOUND);
987 TEST_ESP_ERR(nvs_get_blob(net80211_handle, "sta.mac", mac, &size), ESP_ERR_NVS_NOT_FOUND);
997 TEST_ESP_ERR(nvs_get_blob(net80211_handle, "sta.pswd", pswd, &size), ESP_ERR_NVS_NOT_FOUND);
1003 TEST_ESP_ERR(nvs_get_blob(net80211_handle, "sta.pmk", pmk, &size), ESP_ERR_NVS_NOT_FOUND);
1021 TEST_ESP_ERR(nvs_get_blob(net80211_handle, "sta.bssid", bssid, &size), ESP_ERR_NVS_NOT_FOUND);
1035 TEST_ESP_ERR(nvs_get_blob(net80211_handle, "sta.apsw", apsw, &size), ESP_ERR_NVS_NOT_FOUND);
1041 TEST_ESP_ERR(nvs_get_blob(net80211_handle, "sta.apinfo", apinfo, &size), ESP_ERR_NVS_NOT_FOUND);
1046 TEST_ESP_ERR(nvs_get_blob(net80211_handle, "ap.ssid", ssid, &size), ESP_ERR_NVS_NOT_FOUND);
1051 TEST_ESP_ERR(nvs_get_blob(net80211_handle, "ap.mac", mac, &size), ESP_ERR_NVS_NOT_FOUND);
1056 TEST_ESP_ERR(nvs_get_blob(net80211_handle, "ap.passwd", pswd, &size), ESP_ERR_NVS_NOT_FOUND);
[all …]
/hal_espressif-3.6.0/examples/bluetooth/esp_ble_mesh/common_components/example_nvs/
Dble_mesh_example_nvs.c73 err = nvs_get_blob(handle, key, NULL, length); in ble_mesh_nvs_get_length()
98 err = nvs_get_blob(handle, key, data, &length); in ble_mesh_nvs_restore()
/hal_espressif-3.6.0/components/nvs_flash/test/
Dtest_nvs.c512 TEST_ESP_OK( nvs_get_blob(handle, "dummyHex2BinKey", buf, &buflen));
517 TEST_ESP_OK( nvs_get_blob(handle, "dummyBase64Key", buf, &buflen));
522 TEST_ESP_OK( nvs_get_blob(handle, "hexFileKey", buf, &buflen));
527 TEST_ESP_OK( nvs_get_blob(handle, "base64FileKey", buf, &buflen));
537 TEST_ESP_OK( nvs_get_blob(handle, "binFileKey", bin_data, &bin_len));
/hal_espressif-3.6.0/examples/protocols/mqtt/ssl_ds/main/
Dapp_main.c144 …esp_ret = nvs_get_blob(esp_ds_nvs_handle, NVS_CIPHER_C, (void *)(ds_data_ctx->esp_ds_data->c), &bl… in esp_read_ds_data_from_nvs()
151 …esp_ret = nvs_get_blob(esp_ds_nvs_handle, NVS_IV, (void *)(ds_data_ctx->esp_ds_data->iv), &blob_le… in esp_read_ds_data_from_nvs()
/hal_espressif-3.6.0/components/bt/host/bluedroid/bta/gatt/
Dbta_gattc_co.c274 nvs_get_blob(cache_env->cache_addr[index].cache_fp, cache_key, NULL, &length); in bta_gattc_co_cache_load()
276 …esp_err_t err_code = nvs_get_blob(cache_env->cache_addr[index].cache_fp, cache_key, attr, &length); in bta_gattc_co_cache_load()
295 nvs_get_blob(cache_env->cache_addr[index].cache_fp, cache_key, NULL, &length); in bta_gattc_get_cache_attr_length()
407 if ((err_code = nvs_get_blob(fp, cache_key, p_buf, &length)) != ESP_OK) { in bta_gattc_co_cache_addr_init()
/hal_espressif-3.6.0/components/bt/common/osi/
Dconfig.c355 err = nvs_get_blob(fp, keyname, NULL, &length); in get_config_size_from_flash()
369 err = nvs_get_blob(fp, keyname, NULL, &length); in get_config_size_from_flash()
564 err = nvs_get_blob(fp, keyname, buf, &length); in config_parse()
576 err = nvs_get_blob(fp, keyname, buf + CONFIG_FILE_MAX_SIZE * i, &length); in config_parse()
/hal_espressif-3.6.0/components/bt/esp_ble_mesh/mesh_core/storage/
Dsettings_nvs.c305 err = nvs_get_blob(handle, key, buf, &buf_len); in settings_load()
357 err = nvs_get_blob(handle, key, NULL, &len); in settings_get_length()
/hal_espressif-3.6.0/components/nvs_flash/include/
Dnvs.h447 esp_err_t nvs_get_blob(nvs_handle_t handle, const char* key, void* out_value, size_t* length);
/hal_espressif-3.6.0/examples/system/console/advanced/components/cmd_nvs/
Dcmd_nvs.c323 if ( (err = nvs_get_blob(nvs, key, NULL, &len)) == ESP_OK) { in get_value_from_nvs()
325 if ( (err = nvs_get_blob(nvs, key, blob, &len)) == ESP_OK) { in get_value_from_nvs()
/hal_espressif-3.6.0/zephyr/esp32/src/wifi/
Desp_wifi_adapter.c597 int32_t nvs_get_blob(uint32_t handle, const char *key, void *out_value, in nvs_get_blob() function
872 ._nvs_get_blob = nvs_get_blob,
/hal_espressif-3.6.0/components/esp_wifi/src/
Dphy_init.c531 err = nvs_get_blob(handle, PHY_CAL_MAC_KEY, cal_data_mac, &length); in load_cal_data_from_nvs_handle()
551 err = nvs_get_blob(handle, PHY_CAL_DATA_KEY, out_cal_data, &length); in load_cal_data_from_nvs_handle()
/hal_espressif-3.6.0/zephyr/esp32s2/src/wifi/
Desp_wifi_adapter.c604 int32_t nvs_get_blob(uint32_t handle, const char *key, void *out_value, in nvs_get_blob() function
877 ._nvs_get_blob = nvs_get_blob,
/hal_espressif-3.6.0/zephyr/esp32s3/src/wifi/
Desp_wifi_adapter.c621 int32_t nvs_get_blob(uint32_t handle, const char *key, void *out_value, in nvs_get_blob() function
898 ._nvs_get_blob = nvs_get_blob,
/hal_espressif-3.6.0/components/esp_phy/src/
Dphy_init.c554 err = nvs_get_blob(handle, PHY_CAL_MAC_KEY, cal_data_mac, &length); in load_cal_data_from_nvs_handle()
572 err = nvs_get_blob(handle, PHY_CAL_DATA_KEY, out_cal_data, &length); in load_cal_data_from_nvs_handle()
/hal_espressif-3.6.0/zephyr/esp32c3/src/wifi/
Desp_wifi_adapter.c694 int32_t nvs_get_blob(uint32_t handle, const char *key, void *out_value, in nvs_get_blob() function
986 ._nvs_get_blob = nvs_get_blob,
/hal_espressif-3.6.0/components/esp_wifi/esp32/
Desp_adapter.c745 ._nvs_get_blob = nvs_get_blob,
/hal_espressif-3.6.0/components/esp_wifi/esp32c3/
Desp_adapter.c726 ._nvs_get_blob = nvs_get_blob,
/hal_espressif-3.6.0/components/esp_wifi/esp32s2/
Desp_adapter.c737 ._nvs_get_blob = nvs_get_blob,
/hal_espressif-3.6.0/components/esp_wifi/esp32s3/
Desp_adapter.c762 ._nvs_get_blob = nvs_get_blob,
/hal_espressif-3.6.0/components/nvs_flash/src/
Dnvs_api.cpp524 extern "C" esp_err_t nvs_get_blob(nvs_handle_t c_handle, const char* key, void* out_value, size_t* … in nvs_get_blob() function
/hal_espressif-3.6.0/tools/test_idf_size/
Dapp.map15819 .literal.nvs_get_blob
15934 .text.nvs_get_blob
Doverflow.map40648 .literal.nvs_get_blob
45733 .text.nvs_get_blob
45736 0x00000000400e3330 nvs_get_blob
74310 nvs_get_blob esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj)
Doverflow_esp32s2.map41450 .literal.nvs_get_blob
46716 .text.nvs_get_blob
46719 0x0000000040093744 nvs_get_blob
75460 nvs_get_blob esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj)
Doverflow_esp32s3.map53060 .literal.nvs_get_blob
57860 .text.nvs_get_blob
57863 0x000000004201399c nvs_get_blob
91195 nvs_get_blob esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj)

12