Home
last modified time | relevance | path

Searched refs:fs_ops (Results 1 – 18 of 18) sorted by relevance

/components/dfs/dfs_v2/src/
A Ddfs_fs.c54 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 Ddfs_vnode.c93 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 Ddfs_file.c131 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 Ddfs_mnt.c296 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 Ddfs_dentry.c300 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 Ddfs_posix.c576 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 Dproc_mounts.c42 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 Dproc_filesystems.c62 …dfs_seq_printf(seq, "%-9s%s\n", (fs->fs_ops->flags == FS_NEED_DEVICE) ? "" : "nodev", fs->fs_ops->… in seq_show()
A Dprocfs.c414 .fs_ops = &_procfs_ops,
/components/dfs/dfs_v2/include/
A Ddfs_mnt.h48 const struct dfs_filesystem_ops *fs_ops; member
A Ddfs_fs.h113 const struct dfs_filesystem_ops *fs_ops; member
/components/dfs/dfs_v2/filesystems/mqueue/
A Ddfs_mqueue.c228 .fs_ops = &_mqueue_ops,
/components/dfs/dfs_v2/filesystems/romfs/
A Ddfs_romfs.c388 .fs_ops = &_romfs_ops,
/components/dfs/dfs_v2/filesystems/devfs/
A Ddevtmpfs.c648 .fs_ops = &_devtmpfs_ops,
/components/dfs/dfs_v2/filesystems/ptyfs/
A Dptyfs.c645 .fs_ops = &_ptyfs_ops,
/components/dfs/dfs_v2/filesystems/tmpfs/
A Ddfs_tmpfs.c889 .fs_ops = &_tmpfs_ops,
/components/dfs/dfs_v2/filesystems/elmfat/
A Ddfs_elm.c1100 .fs_ops = &dfs_elm,
/components/dfs/dfs_v2/filesystems/cromfs/
A Ddfs_cromfs.c1373 .fs_ops = &_cromfs_ops,

Completed in 32 milliseconds