Home
last modified time | relevance | path

Searched refs:lfs_rename (Results 1 – 6 of 6) sorted by relevance

/littlefs-latest/tests/
Dtest_paths.toml184 lfs_rename(&lfs,
187 lfs_rename(&lfs,
190 lfs_rename(&lfs,
193 lfs_rename(&lfs,
196 lfs_rename(&lfs,
199 lfs_rename(&lfs,
433 lfs_rename(&lfs,
436 lfs_rename(&lfs,
439 lfs_rename(&lfs,
442 lfs_rename(&lfs,
[all …]
Dtest_move.toml19 lfs_rename(&lfs, "a/hello", "c/hello") => 0;
69 lfs_rename(&lfs, "hi", "hi") => 0;
71 lfs_rename(&lfs, "hi/hi", "hi/hi") => 0;
73 lfs_rename(&lfs, "hi/hi/hi", "hi/hi/hi") => 0;
100 lfs_rename(&lfs, "a/hello", "c/hello") => 0;
181 lfs_rename(&lfs, "a/hello", "c/hello") => 0;
277 lfs_rename(&lfs, "a/hello", "c/hello") => 0;
317 lfs_rename(&lfs, "a/hello", "c/hello") => 0;
415 lfs_rename(&lfs, "a/hello", "b/hello") => 0;
417 lfs_rename(&lfs, "b/hello", "c/hello") => 0;
[all …]
Dtest_dirs.toml156 lfs_rename(&lfs, oldpath, newpath) => 0;
235 lfs_rename(&lfs, oldpath, newpath) => 0;
418 lfs_rename(&lfs, oldpath, newpath) => 0;
498 lfs_rename(&lfs, oldpath, newpath) => 0;
584 lfs_rename(&lfs, "potato", "coldpotato") => 0;
588 lfs_rename(&lfs, "coldpotato", "warmpotato") => 0;
589 lfs_rename(&lfs, "warmpotato", "hotpotato") => 0;
602 lfs_rename(&lfs, "hotpotato/baked", "coldpotato/baked") => 0;
603 lfs_rename(&lfs, "coldpotato", "hotpotato") => LFS_ERR_NOTEMPTY;
606 lfs_rename(&lfs, "hotpotato/fried", "coldpotato/fried") => 0;
[all …]
Dtest_relocations.toml310 err = lfs_rename(&lfs, path, path+128);
/littlefs-latest/
Dlfs.h519 int lfs_rename(lfs_t *lfs, const char *oldpath, const char *newpath);
Dlfs.c6037 int lfs_rename(lfs_t *lfs, const char *oldpath, const char *newpath) { function