Lines Matching full:fs
10 #include <zephyr/fs/fs.h>
19 struct fs_file_t fs; in test_fs_mount_flags() local
22 fs_file_t_init(&fs); in test_fs_mount_flags()
42 ret = fs_open(&fs, "/sml/some", FS_O_CREATE); in test_fs_mount_flags()
44 fs_close(&fs); in test_fs_mount_flags()
52 /* Check fs operation on volume mounted with FS_MOUNT_FLAG_READ_ONLY */ in test_fs_mount_flags()
59 ret = fs_open(&fs, "/sml/nosome", FS_O_CREATE); in test_fs_mount_flags()
67 ret = fs_open(&fs, "/sml/other", FS_O_CREATE); in test_fs_mount_flags()
69 ret = fs_open(&fs, "/sml/some", FS_O_RDWR); in test_fs_mount_flags()
71 ret = fs_open(&fs, "/sml/some", FS_O_READ); in test_fs_mount_flags()
73 fs_close(&fs); in test_fs_mount_flags()