Searched refs:namespace_name (Results 1 – 3 of 3) sorted by relevance
/device/soc/esp/esp32/components/nvs_flash/include/ |
D | nvs.h | 107 char namespace_name[16]; /*!< Namespace to which key-value belong */ member 639 nvs_iterator_t nvs_entry_find(const char *part_name, const char *namespace_name, nvs_type_t type);
|
/device/soc/esp/esp32/components/nvs_flash/src/ |
D | nvs_storage.cpp | 742 strncpy(info.namespace_name, name.mName, sizeof(info.namespace_name)); in fillEntryInfo() 748 bool Storage::findEntry(nvs_opaque_iterator_t* it, const char* namespace_name) in findEntry() argument 754 if (namespace_name != nullptr) { in findEntry() 755 if(createOrOpenNamespace(namespace_name, false, it->nsIndex) != ESP_OK) { in findEntry()
|
D | nvs_api.cpp | 708 extern "C" nvs_iterator_t nvs_entry_find(const char *part_name, const char *namespace_name, nvs_typ… in nvs_entry_find() argument 723 bool entryFound = pStorage->findEntry(it, namespace_name); in nvs_entry_find()
|