Lines Matching refs:file
10 lfs_file_open(&lfs, &file, "padding", LFS_O_CREAT | LFS_O_WRONLY) => 0;
13 lfs_file_write(&lfs, &file, buffer, 512) => 512;
15 lfs_file_close(&lfs, &file) => 0;
24 lfs_file_open(&lfs, &file, path, LFS_O_CREAT | LFS_O_WRONLY) => 0;
25 lfs_file_close(&lfs, &file) => 0;
76 lfs_file_open(&lfs, &file, "padding", LFS_O_CREAT | LFS_O_WRONLY) => 0;
79 lfs_file_write(&lfs, &file, buffer, 512) => 512;
81 lfs_file_close(&lfs, &file) => 0;
90 lfs_file_open(&lfs, &file, path, LFS_O_CREAT | LFS_O_WRONLY) => 0;
91 lfs_file_close(&lfs, &file) => 0;
104 lfs_file_open(&lfs, &file, path, LFS_O_WRONLY) => 0;
105 lfs_file_write(&lfs, &file, "hi", 2) => 2;
106 lfs_file_close(&lfs, &file) => 0;
120 lfs_file_open(&lfs, &file, path, LFS_O_WRONLY) => 0;
121 lfs_file_write(&lfs, &file, "hi", 2) => 2;
122 lfs_file_close(&lfs, &file) => 0;