Home
last modified time | relevance | path

Searched refs:fscookie (Results 1 – 17 of 17) sorted by relevance

/lib/fs/include/lib/
A Dfs.h81 typedef struct fscookie fscookie; typedef
88 status_t (*fs_stat)(fscookie *, struct fs_stat *);
90 status_t (*mount)(struct bdev *, fscookie **);
91 status_t (*unmount)(fscookie *);
92 status_t (*open)(fscookie *, const char *, filecookie **);
93 status_t (*create)(fscookie *, const char *, filecookie **, uint64_t);
94 status_t (*remove)(fscookie *, const char *);
101 status_t (*mkdir)(fscookie *, const char *);
102 status_t (*opendir)(fscookie *, const char *, dircookie **) __NONNULL();
/lib/fs/9p/
A Dv9fs_priv.h78 status_t v9fs_mount(bdev_t *dev, fscookie **cookie);
79 status_t v9fs_unmount(fscookie *cookie);
80 status_t v9fs_open_file(fscookie *cookie, const char *path,
82 status_t v9fs_create_file(fscookie *cookie, const char *path,
90 status_t v9fs_open_dir(fscookie *cookie, const char *path, dircookie **dcookie);
91 status_t v9fs_mkdir(fscookie *cookie, const char *path);
A Dv9fs.c88 status_t v9fs_mount(bdev_t *dev, fscookie **cookie) in v9fs_mount()
134 *cookie = (fscookie *)v9fs; in v9fs_mount()
146 status_t v9fs_unmount(fscookie *cookie) in v9fs_unmount()
A Ddir.c37 status_t v9fs_open_dir(fscookie *cookie, const char *path, dircookie **dcookie) in v9fs_open_dir()
137 status_t v9fs_mkdir(fscookie *cookie, const char *path) in v9fs_mkdir()
A Dfile.c37 status_t v9fs_open_file(fscookie *cookie, const char *path, in v9fs_open_file()
121 status_t v9fs_create_file(fscookie *cookie, const char *path, in v9fs_create_file()
/lib/fs/ext2/
A Dext2_priv.h56 status_t ext2_mount(bdev_t *dev, fscookie **cookie);
57 status_t ext2_unmount(fscookie *cookie);
58 status_t ext2_open_file(fscookie *cookie, const char *path, filecookie **fcookie);
A Dext2.c95 status_t ext2_mount(bdev_t *dev, fscookie **cookie) { in ext2_mount()
177 *cookie = (fscookie *)ext2; in ext2_mount()
188 status_t ext2_unmount(fscookie *cookie) { in ext2_unmount()
A Dfile.c19 int ext2_open_file(fscookie *cookie, const char *path, filecookie **fcookie) { in ext2_open_file()
/lib/fs/memfs/
A Dmemfs.c58 static status_t memfs_mount(struct bdev *dev, fscookie **cookie) { in memfs_mount()
69 *cookie = (fscookie *)mem; in memfs_mount()
80 static status_t memfs_unmount(fscookie *cookie) { in memfs_unmount()
100 static status_t memfs_create(fscookie *cookie, const char *name, filecookie **fcookie, uint64_t len… in memfs_create()
157 static status_t memfs_open(fscookie *cookie, const char *name, filecookie **fcookie) { in memfs_open()
177 static status_t memfs_remove(fscookie *cookie, const char *name) { in memfs_remove()
310 static status_t memfs_opendir(fscookie *cookie, const char *name, dircookie **dcookie) { in memfs_opendir()
392 status_t (*mkdir)(fscookie *, const char *);
/lib/fs/fat/
A Dfat_fs.h42 static status_t mount(bdev_t *dev, fscookie **cookie);
43 static status_t unmount(fscookie *cookie);
A Ddir.h27 static status_t opendir(fscookie *cookie, const char *name, dircookie **dcookie);
A Dfile.h25 static status_t open_file(fscookie *cookie, const char *path, filecookie **fcookie);
A Dfs.cpp49 status_t fat_fs::mount(bdev_t *dev, fscookie **cookie) { in mount()
208 *cookie = (fscookie *)fat; in mount()
213 status_t fat_fs::unmount(fscookie *cookie) { in unmount()
A Dfile.cpp81 status_t fat_file::open_file(fscookie *cookie, const char *path, filecookie **fcookie) { in open_file()
A Ddir.cpp352 status_t fat_dir::opendir(fscookie *cookie, const char *name, dircookie **dcookie) { in opendir()
/lib/fs/spifs/
A Dspifs.c582 static status_t spifs_mount(bdev_t *dev, fscookie **cookie) { in spifs_mount()
673 *cookie = (fscookie *)spifs; in spifs_mount()
687 static status_t spifs_unmount(fscookie *cookie) { in spifs_unmount()
708 static status_t spifs_create(fscookie *cookie, const char *name, filecookie **fcookie, uint64_t len… in spifs_create()
802 static status_t spifs_open(fscookie *cookie, const char *name, filecookie **fcookie) { in spifs_open()
831 static status_t spifs_remove(fscookie *cookie, const char *name) { in spifs_remove()
1051 static status_t spifs_opendir(fscookie *cookie, const char *name, dircookie **dcookie) { in spifs_opendir()
1119 static status_t spifs_fs_stat(fscookie *cookie, struct fs_stat *stat) { in spifs_fs_stat()
/lib/fs/
A Dfs.c28 fscookie *cookie;
169 fscookie *cookie; in mount()

Completed in 29 milliseconds