Home
last modified time | relevance | path

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

/littlefs-3.5.0-3.4.0/tests/
Dtest_dirs.toml81 lfs_remove(&lfs, path) => 0;
175 err = lfs_remove(&lfs, path);
222 lfs_remove(&lfs, path) => 0;
305 lfs_remove(&lfs, path) => 0;
401 err = lfs_remove(&lfs, path);
448 lfs_remove(&lfs, path) => 0;
502 lfs_remove(&lfs, "potato") => LFS_ERR_NOTEMPTY;
516 lfs_remove(&lfs, "potato") => LFS_ERR_NOENT;
517 lfs_remove(&lfs, "coldpotato") => LFS_ERR_NOENT;
518 lfs_remove(&lfs, "warmpotato") => LFS_ERR_NOENT;
[all …]
Dtest_paths.toml170 lfs_remove(&lfs, "dirt") => LFS_ERR_NOENT;
171 lfs_remove(&lfs, "dirt/ground") => LFS_ERR_NOENT;
172 lfs_remove(&lfs, "dirt/ground/earth") => LFS_ERR_NOENT;
195 lfs_remove(&lfs, "/") => LFS_ERR_INVAL;
229 lfs_remove(&lfs, "littlefs") => LFS_ERR_NOENT;
235 lfs_remove(&lfs, "littlefs") => 0;
276 lfs_remove(&lfs, path) => 0;
280 lfs_remove(&lfs, path) => 0;
286 lfs_remove(&lfs, path) => 0;
290 lfs_remove(&lfs, path) => 0;
Dtest_alloc.toml135 lfs_remove(&lfs, path) => 0;
137 lfs_remove(&lfs, "breakfast") => 0;
186 lfs_remove(&lfs, path) => 0;
188 lfs_remove(&lfs, "breakfast") => 0;
242 lfs_remove(&lfs, "padding") => 0;
273 lfs_remove(&lfs, "exhaustion") => 0;
299 lfs_remove(&lfs, "exhaustion") => 0;
300 lfs_remove(&lfs, "exhaustiondir") => 0;
310 lfs_remove(&lfs, "exhaustiondir") => 0;
311 lfs_remove(&lfs, "exhaustion") => 0;
[all …]
Dtest_superblocks.toml42 lfs_remove(&lfs, "dummy") => 0;
70 lfs_remove(&lfs, "dummy") => 0;
108 lfs_remove(&lfs, "dummy") => 0;
Dtest_relocations.toml45 lfs_remove(&lfs, path) => 0;
63 lfs_remove(&lfs, path) => 0;
140 lfs_remove(&lfs, path) => 0;
200 err = lfs_remove(&lfs, path);
296 err = lfs_remove(&lfs, path);
Dtest_orphans.toml10 lfs_remove(&lfs, "parent/orphan") => 0;
111 err = lfs_remove(&lfs, path);
Dtest_interspersed.toml87 lfs_remove(&lfs, path) => 0;
131 lfs_remove(&lfs, "f") => 0;
Dtest_entries.toml493 lfs_remove(&lfs, "hi1") => 0;
517 lfs_remove(&lfs, "hi2") => 0;
534 lfs_remove(&lfs, "hi3") => 0;
544 lfs_remove(&lfs, "hi0") => 0;
Dtest_move.toml958 lfs_remove(&lfs, "b") => 0;
959 lfs_remove(&lfs, "c") => 0;
/littlefs-3.5.0-3.4.0/
Dlfs.h459 int lfs_remove(lfs_t *lfs, const char *path);
Dlfs.c5383 int lfs_remove(lfs_t *lfs, const char *path) { function