Home
last modified time | relevance | path

Searched refs:total_entries (Results 1 – 7 of 7) sorted by relevance

/hal_espressif-3.6.0/components/nvs_flash/test/
Dtest_nvs.c127 TEST_ASSERT_TRUE(stat1.total_entries == 0);
158 TEST_ASSERT_TRUE(stat1.total_entries != 0);
167 TEST_ASSERT_TRUE(stat2.total_entries == stat1.total_entries);
175 TEST_ASSERT_TRUE(stat1.total_entries == stat2.total_entries);
183 TEST_ASSERT_TRUE(stat2.total_entries != 0);
191 TEST_ASSERT_TRUE(stat1.total_entries != 0);
205 TEST_ASSERT_TRUE(stat2.total_entries == stat1.total_entries);
215 TEST_ASSERT_TRUE(stat1.total_entries == stat2.total_entries);
218 TEST_ASSERT_TRUE(stat1.total_entries == (stat1.used_entries + stat1.free_entries));
242 TEST_ASSERT_TRUE(stat2.total_entries == stat1.total_entries);
[all …]
/hal_espressif-3.6.0/components/nvs_flash/src/
Dnvs_pagemanager.cpp226 nvsStats.total_entries = 0; in fillStats()
238 nvsStats.total_entries += mFreePageList.size() * Page::ENTRY_COUNT; in fillStats()
Dnvs_api.cpp539 nvs_stats->total_entries = 0; in nvs_get_stats()
Dnvs_page.cpp1039 nvsStats.total_entries += ENTRY_COUNT; in calcEntries()
/hal_espressif-3.6.0/components/nvs_flash/host_test/nvs_page_test/main/
Dnvs_page_test.cpp871 TEST_ASSERT_EQUAL(Page::ENTRY_COUNT, nvsStats.total_entries); in test_Page_calcEntries__uninit()
896 TEST_ASSERT_EQUAL(Page::ENTRY_COUNT, nvsStats.total_entries); in test_Page_calcEntries__corrupt()
909 TEST_ASSERT_EQUAL(Page::ENTRY_COUNT, nvsStats.total_entries); in test_Page_calcEntries__active_wo_blob()
922 TEST_ASSERT_EQUAL(Page::ENTRY_COUNT, nvsStats.total_entries); in test_Page_calcEntries__active_with_blob()
938 TEST_ASSERT_EQUAL(Page::ENTRY_COUNT, nvsStats.total_entries); in test_Page_calcEntries__invalid()
/hal_espressif-3.6.0/components/nvs_flash/test_nvs_host/
Dtest_nvs.cpp1860 CHECK(stat1.total_entries == 0);
1879 CHECK(stat1.total_entries == 6 * p.ENTRY_COUNT);
1888 CHECK(stat2.total_entries == stat1.total_entries);
1896 CHECK(stat1.total_entries == stat2.total_entries);
1904 CHECK(stat2.total_entries != 0);
1912 CHECK(stat1.total_entries != 0);
1926 CHECK(stat2.total_entries == stat1.total_entries);
1936 CHECK(stat1.total_entries == stat2.total_entries);
1939 CHECK(stat1.total_entries == (stat1.used_entries + stat1.free_entries));
1963 CHECK(stat2.total_entries == stat1.total_entries);
[all …]
/hal_espressif-3.6.0/components/nvs_flash/include/
Dnvs.h521 size_t total_entries; /**< Amount all available entries. */ member