Searched refs:child (Results 1 – 7 of 7) sorted by relevance
/littlefs-3.7.0-3.6.0/tests/ |
D | test_relocations.toml | 19 // make a child dir to use in bounded space 20 lfs_mkdir(&lfs, "child") => 0; 27 sprintf(path, "child/test%03d_loooooooooooooooooong_name", i); 34 lfs_dir_open(&lfs, &dir, "child") => 0; 52 sprintf(path, "child/test%03d_loooooooooooooooooong_name", i); 61 lfs_dir_open(&lfs, &dir, "child") => 0; 74 sprintf(path, "child/test%03d_loooooooooooooooooong_name", i); 97 // make a child dir to use in bounded space 98 lfs_mkdir(&lfs, "child") => 0; 105 sprintf(path, "child/test%03d_loooooooooooooooooong_name", i); [all …]
|
D | test_orphans.toml | 10 lfs_mkdir(&lfs, "parent/child") => 0; 14 // corrupt the child's most recent commit, this should be the update 19 lfs_dir_open(&lfs, &dir, "parent/child") => 0; 37 lfs_stat(&lfs, "parent/child", &info) => 0; 43 lfs_stat(&lfs, "parent/child", &info) => 0; 49 lfs_stat(&lfs, "parent/child", &info) => 0; 56 lfs_stat(&lfs, "parent/child", &info) => 0;
|
D | test_evil.toml | 250 // create littlefs with child dir 254 lfs_mkdir(&lfs, "child") => 0; 257 // find child 278 [cases.test_evil_mdir_loop_child] # metadata-pair threaded-list 1-length child loop test 281 // create littlefs with child dir 285 lfs_mkdir(&lfs, "child") => 0; 288 // find child
|
D | test_move.toml | 1597 lfs_mkdir(&lfs, "/parent/child") => 0; 1614 lfs_file_open(&lfs, &file, "/parent/child/0.before", 1618 lfs_file_open(&lfs, &file, "/parent/child/2.after", 1628 lfs_file_open(&lfs, &files[2], "/parent/child/0.before", 1630 lfs_file_open(&lfs, &files[3], "/parent/child/2.after", 1647 lfs_dir_open(&lfs, &dir, "/parent/child"); 1658 lfs_rename(&lfs, "/parent/1.move_me", "/parent/child/1.move_me") => 0; 1684 assert(strcmp(info.name, "child") == 0); 1689 lfs_dir_open(&lfs, &dir, "/parent/child") => 0; 1720 lfs_file_open(&lfs, &file, "/parent/child/0.before", LFS_O_RDONLY) => 0; [all …]
|
/littlefs-3.7.0-3.6.0/scripts/ |
D | bench.py | 925 for child in children.copy(): 926 child.kill()
|
D | test.py | 931 for child in children.copy(): 932 child.kill()
|
/littlefs-3.7.0-3.6.0/ |
D | lfs.c | 4701 lfs_block_t child[2]; local 4704 disk->block, disk->off, &child, sizeof(child)); 4709 lfs_pair_fromle32(child); 4710 return (lfs_pair_cmp(child, find->pair) == 0) ? LFS_CMP_EQ : LFS_CMP_LT;
|