Home
last modified time | relevance | path

Searched defs:fs_file_system_t (Results 1 – 1 of 1) sorted by relevance

/Zephyr-Core-2.7.6/include/fs/
Dfs_sys.h42 struct fs_file_system_t { struct
44 int (*open)(struct fs_file_t *filp, const char *fs_path,
46 ssize_t (*read)(struct fs_file_t *filp, void *dest, size_t nbytes);
47 ssize_t (*write)(struct fs_file_t *filp,
49 int (*lseek)(struct fs_file_t *filp, off_t off, int whence);
50 off_t (*tell)(struct fs_file_t *filp);
51 int (*truncate)(struct fs_file_t *filp, off_t length);
52 int (*sync)(struct fs_file_t *filp);
53 int (*close)(struct fs_file_t *filp);
55 int (*opendir)(struct fs_dir_t *dirp, const char *fs_path);
[all …]