Searched refs:parent (Results 1 – 4 of 4) sorted by relevance
/littlefs-3.7.0-3.6.0/tests/ |
D | test_orphans.toml | 8 lfs_mkdir(&lfs, "parent") => 0; 9 lfs_mkdir(&lfs, "parent/orphan") => 0; 10 lfs_mkdir(&lfs, "parent/child") => 0; 11 lfs_remove(&lfs, "parent/orphan") => 0; 19 lfs_dir_open(&lfs, &dir, "parent/child") => 0; 36 lfs_stat(&lfs, "parent/orphan", &info) => LFS_ERR_NOENT; 37 lfs_stat(&lfs, "parent/child", &info) => 0; 42 lfs_stat(&lfs, "parent/orphan", &info) => LFS_ERR_NOENT; 43 lfs_stat(&lfs, "parent/child", &info) => 0; 47 lfs_mkdir(&lfs, "parent/otherchild") => 0; [all …]
|
D | test_move.toml | 1596 lfs_mkdir(&lfs, "/parent") => 0; 1597 lfs_mkdir(&lfs, "/parent/child") => 0; 1600 lfs_file_open(&lfs, &file, "/parent/1.move_me", 1606 lfs_file_open(&lfs, &file, "/parent/0.before", 1610 lfs_file_open(&lfs, &file, "/parent/2.after", 1614 lfs_file_open(&lfs, &file, "/parent/child/0.before", 1618 lfs_file_open(&lfs, &file, "/parent/child/2.after", 1624 lfs_file_open(&lfs, &files[0], "/parent/0.before", 1626 lfs_file_open(&lfs, &files[1], "/parent/2.after", 1628 lfs_file_open(&lfs, &files[2], "/parent/child/0.before", [all …]
|
/littlefs-3.7.0-3.6.0/ |
D | lfs.c | 571 lfs_mdir_t *parent); 4716 lfs_mdir_t *parent) { argument 4718 parent->tail[0] = 0; 4719 parent->tail[1] = 1; 4723 while (!lfs_pair_isnull(parent->tail)) { 4725 if (lfs_pair_issync(parent->tail, tortoise)) { 4730 tortoise[0] = parent->tail[0]; 4731 tortoise[1] = parent->tail[1]; 4737 lfs_stag_t tag = lfs_dir_fetchmatch(lfs, parent, parent->tail, 4885 lfs_mdir_t parent; local [all …]
|
D | DESIGN.md | 1552 contain metadata pairs that have no parent because of a power loss. These are 1617 add dir B to parent directory 1653 remove dir B from parent directory, creating an orphan 1789 fix reference in parent directory 1838 - Some filesystems propagate COW operations up the tree until a common parent
|