Home
last modified time | relevance | path

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

/littlefs-3.7.0-3.6.0/tests/
Dtest_dirs.toml97 lfs_remove(&lfs, path) => 0;
202 err = lfs_remove(&lfs, path);
254 lfs_remove(&lfs, path) => 0;
352 lfs_remove(&lfs, path) => 0;
461 err = lfs_remove(&lfs, path);
513 lfs_remove(&lfs, path) => 0;
571 lfs_remove(&lfs, "potato") => LFS_ERR_NOTEMPTY;
585 lfs_remove(&lfs, "potato") => LFS_ERR_NOENT;
586 lfs_remove(&lfs, "coldpotato") => LFS_ERR_NOENT;
587 lfs_remove(&lfs, "warmpotato") => LFS_ERR_NOENT;
[all …]
Dtest_paths.toml194 lfs_remove(&lfs, "dirt") => LFS_ERR_NOENT;
195 lfs_remove(&lfs, "dirt/ground") => LFS_ERR_NOENT;
196 lfs_remove(&lfs, "dirt/ground/earth") => LFS_ERR_NOENT;
224 lfs_remove(&lfs, "/") => LFS_ERR_INVAL;
264 lfs_remove(&lfs, "littlefs") => LFS_ERR_NOENT;
270 lfs_remove(&lfs, "littlefs") => 0;
318 lfs_remove(&lfs, path) => 0;
323 lfs_remove(&lfs, path) => 0;
329 lfs_remove(&lfs, path) => 0;
333 lfs_remove(&lfs, path) => 0;
Dtest_alloc.toml164 lfs_remove(&lfs, path) => 0;
166 lfs_remove(&lfs, "breakfast") => 0;
224 lfs_remove(&lfs, path) => 0;
226 lfs_remove(&lfs, "breakfast") => 0;
291 lfs_remove(&lfs, "padding") => 0;
325 lfs_remove(&lfs, "exhaustion") => 0;
358 lfs_remove(&lfs, "exhaustion") => 0;
359 lfs_remove(&lfs, "exhaustiondir") => 0;
369 lfs_remove(&lfs, "exhaustiondir") => 0;
370 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.toml117 lfs_remove(&lfs, "dummy") => 0;
150 lfs_remove(&lfs, "dummy") => 0;
193 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.toml1004 lfs_remove(&lfs, "b") => 0;
1005 lfs_remove(&lfs, "c") => 0;
/littlefs-3.7.0-3.6.0/benches/
Dbench_dir.toml145 int err = lfs_remove(&lfs, name);
262 int err = lfs_remove(&lfs, name);
/littlefs-3.7.0-3.6.0/
Dlfs.h489 int lfs_remove(lfs_t *lfs, const char *path);
Dlfs.c5832 int lfs_remove(lfs_t *lfs, const char *path) { function