/kernel/liteos_m/components/fs/vfs/ |
D | vfs_mount.c | 172 const char *fsType, unsigned long mountflags) in VfsMountPointInit() argument 209 mp->mWriteEnable = (mountflags & MS_RDONLY) ? FALSE : TRUE; in VfsMountPointInit() 230 const char *fsType, unsigned long mountflags, in VfsRemount() argument 247 return mp->mFs->fsMops->mount(mp, mountflags, data); in VfsRemount() 267 const char *fsType, unsigned long mountflags, in mount() argument 279 if (mountflags & MS_REMOUNT) { in mount() 280 ret = VfsRemount(source, target, fsType, mountflags, data); in mount() 285 mp = VfsMountPointInit(source, target, fsType, mountflags); in mount() 291 ret = mp->mFs->fsMops->mount(mp, mountflags, data); in mount()
|
D | vfs_mount.h | 47 int (*mount)(struct MountPoint *mp, unsigned long mountflags,
|
/kernel/uniproton/src/fs/vfs/ |
D | vfs_mount.h | 26 S32 (*mount)(struct TagMountPoint *mp, uintptr_t mountflags, const void *data); 43 const char *filesystemtype, uintptr_t mountflags,
|
D | vfs_mount.c | 145 const char *filesystemtype, uintptr_t mountflags, in OsVfsMount() argument 198 ret = mp->mFs->fsMops->mount(mp, mountflags, data); in OsVfsMount() 205 mp->mWriteEnable = (mountflags & MS_RDONLY) ? FALSE : TRUE; in OsVfsMount()
|
/kernel/liteos_m/kal/libc/newlib/porting/include/sys/ |
D | mount.h | 53 unsigned long mountflags, const void *data);
|
/kernel/uniproton/src/fs/ |
D | fs.c | 200 const char *filesystemtype, unsigned long mountflags, in mount() argument 203 return OsVfsMount(source, target, filesystemtype, mountflags, data); in mount()
|
/kernel/liteos_m/components/fs/fatfs/ |
D | fatfs.c | 99 static int Remount(struct MountPoint *mp, unsigned long mountflags) in Remount() argument 108 mp->mWriteEnable = (mountflags & MS_RDONLY) ? FALSE : TRUE; in Remount() 247 int FatfsMount(struct MountPoint *mp, unsigned long mountflags, in FatfsMount() argument 253 if (mountflags & MS_REMOUNT) { in FatfsMount() 254 return Remount(mp, mountflags); in FatfsMount()
|
/kernel/liteos_m/components/fs/littlefs/ |
D | lfs_adapter.c | 174 int LfsMount(struct MountPoint *mp, unsigned long mountflags, const void *data) in LfsMount() argument 186 if (mountflags & MS_REMOUNT) { in LfsMount()
|
/kernel/liteos_a/syscall/ |
D | los_syscall.h | 246 …Mount(const char *source, const char *target, const char *filesystemtype, unsigned long mountflags,
|
D | fs_syscall.c | 619 …Mount(const char *source, const char *target, const char *filesystemtype, unsigned long mountflags, in SysMount() argument 669 ret = mount(sourceRet, targetRet, (filesystemtype ? fstypeRet : NULL), mountflags, dataRet); in SysMount()
|
/kernel/uniproton/src/fs/littlefs/ |
D | lfs_adapter.c | 151 static S32 OsLfsMount(struct TagMountPoint *mp, uintptr_t mountflags, const void *data) in OsLfsMount() argument
|
/kernel/liteos_a/fs/fat/os_adapt/ |
D | fatfs.c | 192 static int fatfs_sync(unsigned long mountflags, FATFS *fs) in fatfs_sync() argument 196 if (!(mountflags & (MS_NOSYNC | MS_RDONLY))) { in fatfs_sync()
|
/kernel/liteos_a/fs/jffs2/ |
D | jffs2.patch | 5119 +int jffs2_mount(int part_no, struct jffs2_inode **root_node, unsigned long mountflags); 6263 +int jffs2_mount(int part_no, struct jffs2_inode **root_node, unsigned long mountflags) 6530 + if (!(mountflags & MS_RDONLY)) { 6536 + sb->s_mount_flags = mountflags;
|