| /components/dfs/dfs_v2/src/ |
| A D | dfs_fs.c | 54 if (strcmp((*type)->fs_ops->name, name) == 0) in _find_filesystem() 86 LOG_D("register %s file system.", fs->fs_ops->name); in dfs_register() 119 if (strcmp((*type)->fs_ops->name, fs->fs_ops->name) == 0) in dfs_unregister() 281 mnt_parent->fs_ops = type->fs_ops; in dfs_mount() 283 if (mnt_parent->fs_ops->mount) in dfs_mount() 350 mnt_child->fs_ops = type->fs_ops; in dfs_mount() 353 if (mnt_child->fs_ops->mount) in dfs_mount() 567 if (type->fs_ops->flags & FS_NEED_DEVICE) in dfs_mkfs() 586 if (type->fs_ops->mkfs) in dfs_mkfs() 588 ret = type->fs_ops->mkfs(dev_id, type->fs_ops->name); in dfs_mkfs() [all …]
|
| A D | dfs_vnode.c | 93 DLOG(msg, "vnode", vnode->mnt->fs_ops->name, DLOG_MSG, "fs_ops->free_vnode"); in dfs_vnode_destroy() 94 vnode->mnt->fs_ops->free_vnode(vnode); in dfs_vnode_destroy() 163 DLOG(msg, "vnode", vnode->mnt->fs_ops->name, DLOG_MSG, "fs_ops->free_vnode"); in dfs_vnode_unref() 164 vnode->mnt->fs_ops->free_vnode(vnode); in dfs_vnode_unref()
|
| A D | dfs_file.c | 131 if (mnt->fs_ops->readlink) in _try_readlink() 662 if (mnt->fs_ops->create_vnode) in dfs_file_open() 1275 if (mnt->fs_ops->stat) in dfs_file_stat() 1344 if (mnt->fs_ops->stat) in dfs_file_lstat() 1453 if (mnt->fs_ops->setattr) in dfs_file_setattr() 1725 if (mnt->fs_ops->unlink) in dfs_file_unlink() 1846 if (mnt->fs_ops->link) in dfs_file_link() 1954 if (dentry->mnt->fs_ops->symlink) in dfs_file_symlink() 2059 if (mnt->fs_ops->readlink) in dfs_file_readlink() 2160 if (mnt->fs_ops->rename) in dfs_file_rename() [all …]
|
| A D | dfs_mnt.c | 296 DLOG(note, "mnt", "found mnt(%s)", mnt->fs_ops->name); in dfs_mnt_lookup() 320 … DLOG(note, "mnt", "mnt(%s),ref_count=%d", mnt->fs_ops->name, rt_atomic_load(&(mnt->ref_count))); in dfs_mnt_ref() 353 mnt->fs_ops->umount(mnt); in dfs_mnt_unref() 363 DLOG(msg, "mnt", "mnt", DLOG_MSG, "free mnt(%s)", mnt->fs_ops->name); in dfs_mnt_unref() 370 … DLOG(note, "mnt", "mnt(%s),ref_count=%d", mnt->fs_ops->name, rt_atomic_load(&(mnt->ref_count))); in dfs_mnt_unref() 563 … mnt->fs_ops->name, mnt->dev_id->parent.name, mnt->fullpath, rt_atomic_load(&(mnt->ref_count))); in _mnt_dump() 568 mnt->fs_ops->name, mnt->fullpath, rt_atomic_load(&(mnt->ref_count))); in _mnt_dump()
|
| A D | dfs_dentry.c | 300 if (mnt->fs_ops->lookup) in dfs_dentry_lookup() 308 DLOG(msg, "dentry", mnt->fs_ops->name, DLOG_MSG, "vnode=fs_ops->lookup(dentry)"); in dfs_dentry_lookup() 312 vnode = mnt->fs_ops->lookup(dentry); in dfs_dentry_lookup() 317 DLOG(msg, mnt->fs_ops->name, "dentry", DLOG_MSG_RET, "return vnode"); in dfs_dentry_lookup() 337 DLOG(msg, mnt->fs_ops->name, "dentry", DLOG_MSG_RET, "no dentry"); in dfs_dentry_lookup()
|
| A D | dfs_posix.c | 576 ret = file->dentry->mnt->fs_ops->stat(file->dentry, buf); in fstat() 797 ret = file->dentry->mnt->fs_ops->statfs(file->dentry->mnt, buf); in fstatfs()
|
| /components/dfs/dfs_v2/filesystems/procfs/ |
| A D | proc_mounts.c | 42 mnt->fs_ops->name, mnt_flag(mnt->flags)); in mnt_show() 46 dfs_seq_printf(seq, "%s %s %s %s 0 0\n", mnt->fs_ops->name, mnt->fullpath, in mnt_show() 47 mnt->fs_ops->name, mnt_flag(mnt->flags)); in mnt_show()
|
| A D | proc_filesystems.c | 62 …dfs_seq_printf(seq, "%-9s%s\n", (fs->fs_ops->flags == FS_NEED_DEVICE) ? "" : "nodev", fs->fs_ops->… in seq_show()
|
| A D | procfs.c | 414 .fs_ops = &_procfs_ops,
|
| /components/dfs/dfs_v2/include/ |
| A D | dfs_mnt.h | 48 const struct dfs_filesystem_ops *fs_ops; member
|
| A D | dfs_fs.h | 113 const struct dfs_filesystem_ops *fs_ops; member
|
| /components/dfs/dfs_v2/filesystems/mqueue/ |
| A D | dfs_mqueue.c | 228 .fs_ops = &_mqueue_ops,
|
| /components/dfs/dfs_v2/filesystems/romfs/ |
| A D | dfs_romfs.c | 388 .fs_ops = &_romfs_ops,
|
| /components/dfs/dfs_v2/filesystems/devfs/ |
| A D | devtmpfs.c | 648 .fs_ops = &_devtmpfs_ops,
|
| /components/dfs/dfs_v2/filesystems/ptyfs/ |
| A D | ptyfs.c | 645 .fs_ops = &_ptyfs_ops,
|
| /components/dfs/dfs_v2/filesystems/tmpfs/ |
| A D | dfs_tmpfs.c | 889 .fs_ops = &_tmpfs_ops,
|
| /components/dfs/dfs_v2/filesystems/elmfat/ |
| A D | dfs_elm.c | 1100 .fs_ops = &dfs_elm,
|
| /components/dfs/dfs_v2/filesystems/cromfs/ |
| A D | dfs_cromfs.c | 1373 .fs_ops = &_cromfs_ops,
|