Home
last modified time | relevance | path

Searched refs:mountflags (Results 1 – 9 of 9) sorted by relevance

/ohos5.0/base/startup/init/services/init/standard/
H A Dsystem_call_wrap.c78 const char *filesystemtype, unsigned long mountflags,
81 const char *filesystemtype, unsigned long mountflags, in __wrap_mount() argument
85 return __real_mount(source, target, filesystemtype, mountflags, data); in __wrap_mount()
89 int ret = __real_mount(source, target, filesystemtype, mountflags, data); in __wrap_mount()
/ohos5.0/docs/zh-cn/device-dev/kernel/
H A Dkernel-mini-extend-file.md98 …*source, const char *target, const char *filesystemtype, unsigned long mountflags, const void *dat…
103 - mountflags:mount配置参数
347 …*source, const char *target, const char *filesystemtype, unsigned long mountflags, const void *dat…
352 - mountflags:mount配置参数
H A Dkernel-small-bundles-fs-support.md106 …ource, const char \*target, const char \*filesystemtype, unsigned long mountflags, const void \*da…
110 最后两个参数unsigned long mountflags和const void \*data表示挂载标志和数据,默认为0和NULL;这一操作也可以在Shell中使用mount命令实现,最后两个参…
H A Dkernel-mini-appx-lib.md244 …n<br/>st&nbsp;char&nbsp;\*filesystemtype,&nbsp;unsigned&nbsp;long&nbsp;mountflags,&nbsp;c<br/>onst…
/ohos5.0/base/startup/init/services/init/
H A Dinit_common_cmds.c454 unsigned long mountflags = 0; in DoMount() local
456 ret = GetMountFlag(&mountflags, ctx->argv[index], source); in DoMount()
463 ret = mount(source, target, fileSysType, mountflags, NULL); in DoMount()
467 ret = mount(source, target, fileSysType, mountflags, data); in DoMount()
/ohos5.0/docs/en/device-dev/kernel/
H A Dkernel-mini-extend-file.md106 …ource, const char \*target, const char \*filesystemtype, unsigned long mountflags, const void \*da…
111 - **mountflags**: parameters used for the mount operation.
364 …ource, const char \*target, const char \*filesystemtype, unsigned long mountflags, const void \*da…
369 - **mountflags**: parameters used for the mount operation.
H A Dkernel-small-bundles-fs-support.md106 …ource, const char \*target, const char \*filesystemtype, unsigned long mountflags, const void \*da…
113 - **unsigned long mountflags** specifies the mount flag, which is **0** by default.
H A Dkernel-mini-appx-lib.md244 …ource, const char \*target, const char \*filesystemtype, unsigned long mountflags, const void \*da…
/ohos5.0/base/startup/init/test/unittest/param/
H A Dparam_stub.cpp648 const char* filesystemtype, unsigned long mountflags, const void * data) in MountStub() argument