/hal_espressif-3.5.0/components/nvs_flash/src/ |
D | nvs_partition_manager.cpp | 35 Storage* mStorage; in init_partition() 70 Storage* new_storage = nullptr; in init_custom() 71 Storage* storage = lookup_storage_from_name(partition->get_partition_name()); in init_custom() 73 new_storage = new (std::nothrow) Storage(partition); in init_custom() 110 Storage* mStorage; in secure_init_partition() 146 Storage* storage = lookup_storage_from_name(partition_label); in deinit_partition() 181 Storage* sHandle; in open_handle() 228 Storage* NVSPartitionManager::lookup_storage_from_name(const char* name) in lookup_storage_from_name() 230 auto it = find_if(begin(nvs_storage_list), end(nvs_storage_list), [=](Storage& e) -> bool { in lookup_storage_from_name()
|
D | nvs_storage.cpp | 22 Storage::~Storage() in ~Storage() 27 void Storage::clearNamespaces() in clearNamespaces() 32 esp_err_t Storage::populateBlobIndices(TBlobIndexList& blobIdxList) in populateBlobIndices() 61 void Storage::eraseOrphanDataBlobs(TBlobIndexList& blobIdxList) in eraseOrphanDataBlobs() 89 esp_err_t Storage::init(uint32_t baseSector, uint32_t sectorCount) in init() 143 bool Storage::isValid() const in isValid() 148 esp_err_t Storage::findItem(uint8_t nsIndex, ItemType datatype, const char* key, Page* &page, Item&… in findItem() 161 esp_err_t Storage::writeMultiPageBlob(uint8_t nsIndex, const char* key, const void* data, size_t da… in writeMultiPageBlob() 264 esp_err_t Storage::writeItem(uint8_t nsIndex, ItemType datatype, const char* key, const void* data,… in writeItem() 390 esp_err_t Storage::createOrOpenNamespace(const char* nsName, bool canCreate, uint8_t& nsIndex) in createOrOpenNamespace() [all …]
|
D | nvs_storage.hpp | 30 class Storage : public intrusive_list_node<Storage> class 62 ~Storage(); 64 Storage(Partition *partition) : mPartition(partition) { in Storage() function in nvs::Storage 171 nvs::Storage *storage;
|
D | nvs_partition_manager.hpp | 40 Storage* lookup_storage_from_name(const char* name); 55 intrusive_list<nvs::Storage> nvs_storage_list;
|
D | nvs_handle_simple.hpp | 36 NVSHandleSimple(bool readOnly, uint8_t nsIndex, Storage *StoragePtr) : in NVSHandleSimple() 85 Storage *mStoragePtr;
|
D | nvs_api.cpp | 63 static nvs::Storage* lookup_storage_from_name(const char *name) in lookup_storage_from_name() 71 nvs::Storage* pStorage; in nvs_dump() 532 nvs::Storage* pStorage; in nvs_get_stats() 715 static nvs_iterator_t create_iterator(nvs::Storage *storage, nvs_type_t type) in create_iterator() 731 nvs::Storage *pStorage; in nvs_entry_find()
|
/hal_espressif-3.5.0/examples/storage/ |
D | README.md | 1 # Storage Examples 3 Storage and management of user and system data in module’s flash and on external memory / devices.
|
/hal_espressif-3.5.0/docs/en/api-reference/storage/ |
D | index.rst | 1 Storage API 11 Non-Volatile Storage <nvs_flash>
|
/hal_espressif-3.5.0/examples/peripherals/usb/host/msc/components/msc/ |
D | README.md | 1 # USB Host MSC (Mass Storage Class) Driver 3 This directory contains an implementation of a USB Mass Storage Class Driver implemented on top of … 13 - Mass Storage Class driver is installed by calling `usb_msc_install` function along side with conf…
|
/hal_espressif-3.5.0/examples/storage/nvs_rw_value_cxx/ |
D | README.md | 1 # Non-Volatile Storage (NVS) C++ Read and Write Example 31 Opening Non-Volatile Storage (NVS) handle... Done 53 Opening Non-Volatile Storage (NVS) handle... Done
|
/hal_espressif-3.5.0/examples/storage/nvs_rw_value/ |
D | README.md | 1 # Non-Volatile Storage (NVS) Read and Write Example 37 Opening Non-Volatile Storage (NVS) handle... Done 59 Opening Non-Volatile Storage (NVS) handle... Done
|
/hal_espressif-3.5.0/components/nvs_flash/test_nvs_host/ |
D | test_partition_manager.cpp | 55 Storage *storage1 = NVSPartitionManager::get_instance()->lookup_storage_from_name("test1"); 57 Storage *storage2 = NVSPartitionManager::get_instance()->lookup_storage_from_name("test2");
|
D | test_nvs_storage.cpp | 39 Storage *storage = NVSPartitionManager::get_instance()->lookup_storage_from_name("test");
|
D | test_nvs.cpp | 371 Storage storage(&f.part); 381 Storage storage(&f.part); 397 Storage storage(&f.part); 409 Storage storage(&f.part); 429 Storage storage(&f.part); 452 Storage storage(&f.part); 479 Storage storage(&f.part); 498 Storage storage(&f.part); 513 Storage storage(&f.part); 527 Storage storage(&f.part); [all …]
|
/hal_espressif-3.5.0/examples/peripherals/usb/host/msc/ |
D | README.md | 4 # USB Mass Storage Class example 8 This example demonstrates usage of Mass Storage Class to get access to storage on USB memory stick.
|
/hal_espressif-3.5.0/examples/system/base_mac_address/main/ |
D | Kconfig.projbuild | 4 prompt "Storage location of the base MAC address" 15 3. Other External Storage: Selecting this option will cause the
|
/hal_espressif-3.5.0/docs/en/api-reference/ |
D | index.rst | 14 Storage <storage/index>
|
/hal_espressif-3.5.0/docs/en/api-guides/ |
D | thread-local-storage.rst | 1 Thread Local Storage 60 Storage for that kind of variables is allocated on the task's stack.
|
D | index.rst | 38 Thread Local Storage <thread-local-storage>
|
/hal_espressif-3.5.0/components/tinyusb/ |
D | Kconfig | 117 menu "Massive Storage Class (MSC)" 130 endmenu # "Massive Storage Class"
|
/hal_espressif-3.5.0/examples/system/base_mac_address/ |
D | README.md | 27 * To select the storage source of the base MAC address, go to `Example Configuration > Storage loca… 50 Depending on the `Storage of the base MAC address` configuration option, the console should output …
|
/hal_espressif-3.5.0/examples/storage/nvs_rw_blob/ |
D | README.md | 1 # Non-Volatile Storage (NVS) Read and Write Example
|
/hal_espressif-3.5.0/examples/storage/spiffsgen/ |
D | README.md | 8 …of `spiffsgen.py` on the ESP-IDF Programming Guide under API Reference > Storage > SPIFFS Filesyst…
|
/hal_espressif-3.5.0/docs/en/api-guides/esp-ble-mesh/ |
D | ble-mesh-feature-list.rst | 141 * Provisioner NVS Storage
|
/hal_espressif-3.5.0/components/nvs_flash/host_test/fixtures/ |
D | test_fixtures.hpp | 309 nvs::Storage storage;
|