Searched refs:parent (Results 1 – 4 of 4) sorted by relevance
/littlefs-3.5.0-3.4.0/tests/ |
D | test_orphans.toml | 7 lfs_mkdir(&lfs, "parent") => 0; 8 lfs_mkdir(&lfs, "parent/orphan") => 0; 9 lfs_mkdir(&lfs, "parent/child") => 0; 10 lfs_remove(&lfs, "parent/orphan") => 0; 17 lfs_dir_open(&lfs, &dir, "parent/child") => 0; 33 lfs_stat(&lfs, "parent/orphan", &info) => LFS_ERR_NOENT; 34 lfs_stat(&lfs, "parent/child", &info) => 0; 39 lfs_stat(&lfs, "parent/orphan", &info) => LFS_ERR_NOENT; 40 lfs_stat(&lfs, "parent/child", &info) => 0; 44 lfs_mkdir(&lfs, "parent/otherchild") => 0; [all …]
|
D | test_move.toml | 1529 lfs_mkdir(&lfs, "/parent") => 0; 1530 lfs_mkdir(&lfs, "/parent/child") => 0; 1532 lfs_file_open(&lfs, &file, "/parent/1.move_me", 1538 lfs_file_open(&lfs, &file, "/parent/0.before", 1542 lfs_file_open(&lfs, &file, "/parent/2.after", 1546 lfs_file_open(&lfs, &file, "/parent/child/0.before", 1550 lfs_file_open(&lfs, &file, "/parent/child/2.after", 1556 lfs_file_open(&lfs, &files[0], "/parent/0.before", 1558 lfs_file_open(&lfs, &files[1], "/parent/2.after", 1560 lfs_file_open(&lfs, &files[2], "/parent/child/0.before", [all …]
|
/littlefs-3.5.0-3.4.0/ |
D | lfs.c | 505 lfs_mdir_t *parent); 4407 lfs_mdir_t *parent) { argument 4409 parent->tail[0] = 0; 4410 parent->tail[1] = 1; 4412 while (!lfs_pair_isnull(parent->tail)) { 4419 lfs_stag_t tag = lfs_dir_fetchmatch(lfs, parent, parent->tail, 4510 lfs_mdir_t parent; local 4511 lfs_stag_t tag = lfs_fs_parent(lfs, pdir.tail, &parent); 4553 lfs_stag_t state = lfs_dir_get(lfs, &parent,
|
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
|