Home
last modified time | relevance | path

Searched refs:lfs_remove (Results 1 – 12 of 12) sorted by relevance

/littlefs-latest/tests/
Dtest_dirs.toml97 lfs_remove(&lfs, path) => 0;
206 err = lfs_remove(&lfs, path);
258 lfs_remove(&lfs, path) => 0;
356 lfs_remove(&lfs, path) => 0;
469 err = lfs_remove(&lfs, path);
521 lfs_remove(&lfs, path) => 0;
579 lfs_remove(&lfs, "potato") => LFS_ERR_NOTEMPTY;
593 lfs_remove(&lfs, "potato") => LFS_ERR_NOENT;
594 lfs_remove(&lfs, "coldpotato") => LFS_ERR_NOENT;
595 lfs_remove(&lfs, "warmpotato") => LFS_ERR_NOENT;
[all …]
Dtest_paths.toml231 lfs_remove(&lfs, "espresso/espresso") => 0;
232 lfs_remove(&lfs, "espresso/americano") => 0;
233 lfs_remove(&lfs, "espresso/macchiato") => 0;
234 lfs_remove(&lfs, "espresso/latte") => 0;
235 lfs_remove(&lfs, "espresso/cappuccino") => 0;
236 lfs_remove(&lfs, "espresso/mocha") => 0;
480 lfs_remove(&lfs, "/espresso/espresso") => 0;
481 lfs_remove(&lfs, "/espresso/americano") => 0;
482 lfs_remove(&lfs, "/espresso/macchiato") => 0;
483 lfs_remove(&lfs, "/espresso/latte") => 0;
[all …]
Dtest_alloc.toml181 lfs_remove(&lfs, path) => 0;
183 lfs_remove(&lfs, "breakfast") => 0;
246 lfs_remove(&lfs, path) => 0;
248 lfs_remove(&lfs, "breakfast") => 0;
323 lfs_remove(&lfs, "padding") => 0;
357 lfs_remove(&lfs, "exhaustion") => 0;
395 lfs_remove(&lfs, "exhaustion") => 0;
396 lfs_remove(&lfs, "exhaustiondir") => 0;
406 lfs_remove(&lfs, "exhaustiondir") => 0;
407 lfs_remove(&lfs, "exhaustion") => 0;
[all …]
Dtest_relocations.toml53 lfs_remove(&lfs, path) => 0;
75 lfs_remove(&lfs, path) => 0;
162 lfs_remove(&lfs, path) => 0;
229 err = lfs_remove(&lfs, path);
334 err = lfs_remove(&lfs, path);
Dtest_superblocks.toml138 lfs_remove(&lfs, "dummy") => 0;
172 lfs_remove(&lfs, "dummy") => 0;
204 lfs_remove(&lfs, "dummy") => 0;
251 lfs_remove(&lfs, "dummy") => 0;
Dtest_entries.toml517 lfs_remove(&lfs, "hi1") => 0;
542 lfs_remove(&lfs, "hi2") => 0;
559 lfs_remove(&lfs, "hi3") => 0;
569 lfs_remove(&lfs, "hi0") => 0;
Dtest_orphans.toml11 lfs_remove(&lfs, "parent/orphan") => 0;
264 err = lfs_remove(&lfs, path);
Dtest_interspersed.toml99 lfs_remove(&lfs, path) => 0;
147 lfs_remove(&lfs, "f") => 0;
Dtest_move.toml1012 lfs_remove(&lfs, "b") => 0;
1013 lfs_remove(&lfs, "c") => 0;
/littlefs-latest/benches/
Dbench_dir.toml145 int err = lfs_remove(&lfs, name);
262 int err = lfs_remove(&lfs, name);
/littlefs-latest/
Dlfs.h509 int lfs_remove(lfs_t *lfs, const char *path);
Dlfs.c6021 int lfs_remove(lfs_t *lfs, const char *path) { function