Lines Matching full:potato
533 lfs_mkdir(&lfs, "potato") => 0;
541 lfs_mkdir(&lfs, "potato/baked") => 0;
542 lfs_mkdir(&lfs, "potato/sweet") => 0;
543 lfs_mkdir(&lfs, "potato/fried") => 0;
548 lfs_dir_open(&lfs, &dir, "potato") => 0;
571 lfs_remove(&lfs, "potato") => LFS_ERR_NOTEMPTY;
576 lfs_rename(&lfs, "potato", "coldpotato") => 0;
585 lfs_remove(&lfs, "potato") => LFS_ERR_NOENT;
725 lfs_mkdir(&lfs, "potato") => 0;
734 lfs_mkdir(&lfs, "potato") => LFS_ERR_EXIST;
738 lfs_file_open(&lfs, &file, "potato",
744 lfs_file_open(&lfs, &file, "potato", LFS_O_RDONLY) => LFS_ERR_ISDIR;
746 lfs_file_open(&lfs, &file, "potato", LFS_O_WRONLY) => LFS_ERR_ISDIR;
747 lfs_file_open(&lfs, &file, "potato",
772 assert(strcmp(info.name, "potato") == 0);
792 assert(strcmp(info.name, "potato") == 0);