Home
last modified time | relevance | path

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

/Zephyr-latest/subsys/fs/fcb/
DCMakeLists.txt7 fcb_getnext.c
Dfcb_getnext.c109 fcb_getnext(struct fcb *fcb, struct fcb_entry *loc) in fcb_getnext() function
Dfcb.c319 while (!fcb_getnext(fcbp, &loc)) { in fcb_offset_last_n()
326 rc = fcb_getnext(fcbp, last_n_entry); in fcb_offset_last_n()
/Zephyr-latest/tests/subsys/settings/functional/fcb/
Dsettings_test_fcb.c23 rc = fcb_getnext((struct fcb *)storage, &loc); in ZTEST()
/Zephyr-latest/subsys/settings/src/
Dsettings_fcb.c121 while (fcb_getnext(&cf->cf_fcb, &entry2_ctx.loc) == 0) { in settings_fcb_check_duplicate()
158 while ((rc = fcb_getnext(&cf->cf_fcb, &entry_ctx.loc)) == 0) { in settings_fcb_load_priv()
239 while (fcb_getnext(&cf->cf_fcb, &loc1.loc) == 0) { in settings_fcb_compress()
262 while (fcb_getnext(&cf->cf_fcb, &loc2.loc) == 0) { in settings_fcb_compress()
/Zephyr-latest/include/zephyr/fs/
Dfcb.h244 int fcb_getnext(struct fcb *fcbp, struct fcb_entry *loc);
/Zephyr-latest/doc/services/storage/fcb/
Dfcb.rst61 - Call :c:func:`fcb_getnext` with 0 in entry offset to get the pointer to
64 - Call :c:func:`fcb_getnext` with pointer to current entry to get the next one.