/hal_espressif-3.6.0/examples/storage/nvs_rw_blob/main/ |
D | nvs_blob_example_main.c | 82 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/ |
D | test_nvs.cpp | 981 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/ |
D | ble_mesh_example_nvs.c | 73 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/ |
D | test_nvs.c | 512 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/ |
D | app_main.c | 144 …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/ |
D | bta_gattc_co.c | 274 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/ |
D | config.c | 355 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/ |
D | settings_nvs.c | 305 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/ |
D | nvs.h | 447 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/ |
D | cmd_nvs.c | 323 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/ |
D | esp_wifi_adapter.c | 597 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/ |
D | phy_init.c | 531 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/ |
D | esp_wifi_adapter.c | 604 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/ |
D | esp_wifi_adapter.c | 621 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/ |
D | phy_init.c | 554 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/ |
D | esp_wifi_adapter.c | 694 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/ |
D | esp_adapter.c | 745 ._nvs_get_blob = nvs_get_blob,
|
/hal_espressif-3.6.0/components/esp_wifi/esp32c3/ |
D | esp_adapter.c | 726 ._nvs_get_blob = nvs_get_blob,
|
/hal_espressif-3.6.0/components/esp_wifi/esp32s2/ |
D | esp_adapter.c | 737 ._nvs_get_blob = nvs_get_blob,
|
/hal_espressif-3.6.0/components/esp_wifi/esp32s3/ |
D | esp_adapter.c | 762 ._nvs_get_blob = nvs_get_blob,
|
/hal_espressif-3.6.0/components/nvs_flash/src/ |
D | nvs_api.cpp | 524 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/ |
D | app.map | 15819 .literal.nvs_get_blob 15934 .text.nvs_get_blob
|
D | overflow.map | 40648 .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)
|
D | overflow_esp32s2.map | 41450 .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)
|
D | overflow_esp32s3.map | 53060 .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)
|