Lines Matching +full:- +full:c

7     lfs_mkdir(&lfs, "c") => 0;
17 lfs_rename(&lfs, "a/hello", "c/hello") => 0;
30 lfs_dir_open(&lfs, &dir, "c") => 0;
46 lfs_file_open(&lfs, &file, "c/hello", LFS_O_RDONLY) => 0;
75 in = "lfs.c"
81 lfs_mkdir(&lfs, "c") => 0;
91 lfs_rename(&lfs, "a/hello", "c/hello") => 0;
102 int off = LFS_BLOCK_SIZE-1;
104 off -= 1;
106 memset(&bbuffer[off-3], LFS_BLOCK_SIZE, 3);
121 lfs_dir_open(&lfs, &dir, "c") => 0;
137 lfs_file_open(&lfs, &file, "c/hello", LFS_O_RDONLY) => 0;
150 in = "lfs.c"
157 lfs_mkdir(&lfs, "c") => 0;
167 lfs_rename(&lfs, "a/hello", "c/hello") => 0;
178 int off = LFS_BLOCK_SIZE-1;
180 off -= 1;
182 memset(&bbuffer[off-3], LFS_BLOCK_SIZE, 3);
189 lfs_dir_open(&lfs, &dir, "c") => 0;
194 off = LFS_BLOCK_SIZE-1;
196 off -= 1;
198 memset(&bbuffer[off-3], LFS_BLOCK_SIZE, 3);
217 lfs_dir_open(&lfs, &dir, "c") => 0;
236 lfs_file_open(&lfs, &file, "c/hello", LFS_O_RDONLY) => LFS_ERR_NOENT;
242 in = "lfs.c"
249 lfs_mkdir(&lfs, "c") => 0;
259 lfs_rename(&lfs, "a/hello", "c/hello") => 0;
270 int off = LFS_BLOCK_SIZE-1;
272 off -= 1;
274 memset(&bbuffer[off-3], LFS_BLOCK_SIZE, 3);
281 lfs_dir_open(&lfs, &dir, "c") => 0;
286 off = LFS_BLOCK_SIZE-1;
288 off -= 1;
290 memset(&bbuffer[off-3], LFS_BLOCK_SIZE, 3);
297 lfs_rename(&lfs, "a/hello", "c/hello") => 0;
310 lfs_dir_open(&lfs, &dir, "c") => 0;
326 lfs_file_open(&lfs, &file, "c/hello", LFS_O_RDONLY) => 0;
350 err = lfs_mkdir(&lfs, "c");
372 if (lfs_stat(&lfs, "c/hello", &info) == 0) {
391 lfs_rename(&lfs, "b/hello", "c/hello") => 0;
392 } else if (lfs_stat(&lfs, "c/hello", &info) == 0) {
393 lfs_rename(&lfs, "c/hello", "d/hello") => 0;
436 lfs_file_open(&lfs, &file, "c/hello", LFS_O_RDONLY) => LFS_ERR_NOENT;
454 lfs_mkdir(&lfs, "c") => 0;
463 lfs_rename(&lfs, "a/hi", "c/hi") => 0;
476 lfs_dir_open(&lfs, &dir, "c") => 0;
491 lfs_dir_open(&lfs, &dir, "c/hi") => 0;
514 in = "lfs.c"
520 lfs_mkdir(&lfs, "c") => 0;
529 lfs_rename(&lfs, "a/hi", "c/hi") => 0;
540 int off = LFS_BLOCK_SIZE-1;
542 off -= 1;
544 memset(&bbuffer[off-3], LFS_BLOCK_SIZE, 3);
559 lfs_dir_open(&lfs, &dir, "c") => 0;
574 lfs_dir_open(&lfs, &dir, "c/hi") => 0;
597 in = "lfs.c"
604 lfs_mkdir(&lfs, "c") => 0;
613 lfs_rename(&lfs, "a/hi", "c/hi") => 0;
624 int off = LFS_BLOCK_SIZE-1;
626 off -= 1;
628 memset(&bbuffer[off-3], LFS_BLOCK_SIZE, 3);
635 lfs_dir_open(&lfs, &dir, "c") => 0;
640 off = LFS_BLOCK_SIZE-1;
642 off -= 1;
644 memset(&bbuffer[off-3], LFS_BLOCK_SIZE, 3);
662 lfs_dir_open(&lfs, &dir, "c") => 0;
691 lfs_dir_open(&lfs, &dir, "c/hi") => LFS_ERR_NOENT;
697 in = "lfs.c"
704 lfs_mkdir(&lfs, "c") => 0;
713 lfs_rename(&lfs, "a/hi", "c/hi") => 0;
724 int off = LFS_BLOCK_SIZE-1;
726 off -= 1;
728 memset(&bbuffer[off-3], LFS_BLOCK_SIZE, 3);
735 lfs_dir_open(&lfs, &dir, "c") => 0;
740 off = LFS_BLOCK_SIZE-1;
742 off -= 1;
744 memset(&bbuffer[off-3], LFS_BLOCK_SIZE, 3);
751 lfs_rename(&lfs, "a/hi", "c/hi") => 0;
764 lfs_dir_open(&lfs, &dir, "c") => 0;
779 lfs_dir_open(&lfs, &dir, "c/hi") => 0;
813 err = lfs_mkdir(&lfs, "c");
833 if (lfs_stat(&lfs, "c/hi", &info) == 0) {
850 lfs_rename(&lfs, "b/hi", "c/hi") => 0;
851 } else if (lfs_stat(&lfs, "c/hi", &info) == 0) {
852 lfs_rename(&lfs, "c/hi", "d/hi") => 0;
896 lfs_dir_open(&lfs, &dir, "c/hi") => LFS_ERR_NOENT;
924 lfs_mkdir(&lfs, "c") => 0;
937 lfs_rename(&lfs, "b/hello", "c/hello") => 0;
940 lfs_rename(&lfs, "c/hello", "d/hello") => 0;
946 lfs_file_open(&lfs, &file, "c/hello", LFS_O_RDONLY) => LFS_ERR_NOENT;
959 lfs_remove(&lfs, "c") => 0;
965 lfs_stat(&lfs, "c", &info) => LFS_ERR_NOENT;
969 lfs_file_open(&lfs, &file, "c/hello", LFS_O_RDONLY) => LFS_ERR_NOENT;
1434 lfs_file_write(&lfs, &files[3], "test.c", 7) => 7;
1516 assert(strcmp((char*)buffer, "test.c") == 0);
1522 in = "lfs.c"
1584 // fixed, possibly in a metadata-pair that needs to be relocated
1659 in = "lfs.c"
1728 // fixed, possibly in a metadata-pair that needs to be relocated