Searched refs:fscookie (Results 1 – 17 of 17) sorted by relevance
| /lib/fs/include/lib/ |
| A D | fs.h | 81 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 D | v9fs_priv.h | 78 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 D | v9fs.c | 88 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 D | dir.c | 37 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 D | file.c | 37 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 D | ext2_priv.h | 56 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 D | ext2.c | 95 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 D | file.c | 19 int ext2_open_file(fscookie *cookie, const char *path, filecookie **fcookie) { in ext2_open_file()
|
| /lib/fs/memfs/ |
| A D | memfs.c | 58 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 D | fat_fs.h | 42 static status_t mount(bdev_t *dev, fscookie **cookie); 43 static status_t unmount(fscookie *cookie);
|
| A D | dir.h | 27 static status_t opendir(fscookie *cookie, const char *name, dircookie **dcookie);
|
| A D | file.h | 25 static status_t open_file(fscookie *cookie, const char *path, filecookie **fcookie);
|
| A D | fs.cpp | 49 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 D | file.cpp | 81 status_t fat_file::open_file(fscookie *cookie, const char *path, filecookie **fcookie) { in open_file()
|
| A D | dir.cpp | 352 status_t fat_dir::opendir(fscookie *cookie, const char *name, dircookie **dcookie) { in opendir()
|
| /lib/fs/spifs/ |
| A D | spifs.c | 582 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 D | fs.c | 28 fscookie *cookie; 169 fscookie *cookie; in mount()
|
Completed in 29 milliseconds