/hal_espressif-3.6.0/components/nvs_flash/include/ |
D | nvs.h | 333 esp_err_t nvs_get_i8 (nvs_handle_t handle, const char* key, int8_t* out_value); 340 esp_err_t nvs_get_u8 (nvs_handle_t handle, const char* key, uint8_t* out_value); 347 esp_err_t nvs_get_i16 (nvs_handle_t handle, const char* key, int16_t* out_value); 354 esp_err_t nvs_get_u16 (nvs_handle_t handle, const char* key, uint16_t* out_value); 361 esp_err_t nvs_get_i32 (nvs_handle_t handle, const char* key, int32_t* out_value); 368 esp_err_t nvs_get_u32 (nvs_handle_t handle, const char* key, uint32_t* out_value); 375 esp_err_t nvs_get_i64 (nvs_handle_t handle, const char* key, int64_t* out_value); 382 esp_err_t nvs_get_u64 (nvs_handle_t handle, const char* key, uint64_t* out_value); 440 esp_err_t nvs_get_str (nvs_handle_t handle, const char* key, char* out_value, size_t* length); 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/components/nvs_flash/src/ |
D | nvs_api.cpp | 437 static esp_err_t nvs_get(nvs_handle_t c_handle, const char* key, T* out_value) in nvs_get() argument 446 return handle->get_item(key, *out_value); in nvs_get() 449 extern "C" esp_err_t nvs_get_i8 (nvs_handle_t c_handle, const char* key, int8_t* out_value) in nvs_get_i8() argument 451 return nvs_get(c_handle, key, out_value); in nvs_get_i8() 454 extern "C" esp_err_t nvs_get_u8 (nvs_handle_t c_handle, const char* key, uint8_t* out_value) in nvs_get_u8() argument 456 return nvs_get(c_handle, key, out_value); in nvs_get_u8() 459 extern "C" esp_err_t nvs_get_i16 (nvs_handle_t c_handle, const char* key, int16_t* out_value) in nvs_get_i16() argument 461 return nvs_get(c_handle, key, out_value); in nvs_get_i16() 464 extern "C" esp_err_t nvs_get_u16 (nvs_handle_t c_handle, const char* key, uint16_t* out_value) in nvs_get_u16() argument 466 return nvs_get(c_handle, key, out_value); in nvs_get_u16() [all …]
|
/hal_espressif-3.6.0/components/esp_wifi/include/esp_private/ |
D | wifi_os_adapter.h | 98 int (* _nvs_get_i8)(uint32_t handle, const char* key, int8_t* out_value); 100 int (* _nvs_get_u8)(uint32_t handle, const char* key, uint8_t* out_value); 102 int (* _nvs_get_u16)(uint32_t handle, const char* key, uint16_t* out_value); 107 int (* _nvs_get_blob)(uint32_t handle, const char* key, void* out_value, size_t* length);
|
/hal_espressif-3.6.0/zephyr/esp32c3/src/wifi/ |
D | esp_wifi_adapter.c | 615 int32_t nvs_get_i8(uint32_t handle, const char *key, int8_t *out_value) in nvs_get_i8() argument 619 ARG_UNUSED(out_value); in nvs_get_i8() 633 int32_t nvs_get_u8(uint32_t handle, const char *key, uint8_t *out_value) in nvs_get_u8() argument 637 ARG_UNUSED(out_value); in nvs_get_u8() 651 int32_t nvs_get_u16(uint32_t handle, const char *key, uint16_t *out_value) in nvs_get_u16() argument 655 ARG_UNUSED(out_value); in nvs_get_u16() 694 int32_t nvs_get_blob(uint32_t handle, const char *key, void *out_value, in nvs_get_blob() argument 699 ARG_UNUSED(out_value); in nvs_get_blob()
|
/hal_espressif-3.6.0/components/esp_serial_slave_link/include/esp_serial_slave_link/ |
D | essl_spi.h | 80 esp_err_t essl_spi_read_reg(void *arg, uint8_t addr, uint8_t *out_value, uint32_t wait_ms); 116 esp_err_t essl_spi_write_reg(void *arg, uint8_t addr, uint8_t value, uint8_t *out_value, uint32_t w…
|
/hal_espressif-3.6.0/components/esp_serial_slave_link/ |
D | essl_spi.c | 313 esp_err_t essl_spi_read_reg(void *arg, uint8_t addr, uint8_t *out_value, uint32_t wait_ms) in essl_spi_read_reg() argument 323 return essl_spi_rdbuf(ctx->spi, out_value, addr, sizeof(uint8_t), 0); in essl_spi_read_reg() 402 esp_err_t essl_spi_write_reg(void *arg, uint8_t addr, uint8_t value, uint8_t *out_value, uint32_t w… in essl_spi_write_reg() argument 411 …ESP_RETURN_ON_FALSE(out_value == NULL, ESP_ERR_NOT_SUPPORTED, TAG, "This feature is not supported"… in essl_spi_write_reg()
|
/hal_espressif-3.6.0/zephyr/esp32/src/wifi/ |
D | esp_wifi_adapter.c | 551 int32_t nvs_get_i8(uint32_t handle, const char *key, int8_t *out_value) in nvs_get_i8() argument 561 int32_t nvs_get_u8(uint32_t handle, const char *key, uint8_t *out_value) in nvs_get_u8() argument 571 int32_t nvs_get_u16(uint32_t handle, const char *key, uint16_t *out_value) in nvs_get_u16() argument 597 int32_t nvs_get_blob(uint32_t handle, const char *key, void *out_value, in nvs_get_blob() argument
|
/hal_espressif-3.6.0/zephyr/esp32s2/src/wifi/ |
D | esp_wifi_adapter.c | 558 int32_t nvs_get_i8(uint32_t handle, const char *key, int8_t *out_value) in nvs_get_i8() argument 568 int32_t nvs_get_u8(uint32_t handle, const char *key, uint8_t *out_value) in nvs_get_u8() argument 578 int32_t nvs_get_u16(uint32_t handle, const char *key, uint16_t *out_value) in nvs_get_u16() argument 604 int32_t nvs_get_blob(uint32_t handle, const char *key, void *out_value, in nvs_get_blob() argument
|
/hal_espressif-3.6.0/zephyr/esp32s3/src/wifi/ |
D | esp_wifi_adapter.c | 575 int32_t nvs_get_i8(uint32_t handle, const char *key, int8_t *out_value) in nvs_get_i8() argument 585 int32_t nvs_get_u8(uint32_t handle, const char *key, uint8_t *out_value) in nvs_get_u8() argument 595 int32_t nvs_get_u16(uint32_t handle, const char *key, uint16_t *out_value) in nvs_get_u16() argument 621 int32_t nvs_get_blob(uint32_t handle, const char *key, void *out_value, in nvs_get_blob() argument
|