Lines Matching full:system
25 * this function will register a file system instance to device file system.
27 * @param ops the file system instance to be registered.
58 LOG_E("There is no space to register this file system (%d).", ops->name); in dfs_register()
71 * this function will return the file system mounted on specified path.
75 * @return the found file system or NULL if no file system mounted on
204 * this function will mount a file system on a specified path.
206 * @param device_name the name of device which includes a file system.
207 * @param path the path to mount a file system
208 * @param filesystemtype the file system type
210 * @param data the private data(parameter) for this file system.
286 /* check whether the file system mounted or not in the filesystem table in dfs_mount()
307 LOG_E("There is no space to mount this file system (%s).", filesystemtype); in dfs_mount()
311 /* register file system */ in dfs_mount()
357 * this function will unmount a file system on specified path.
359 * @param specialfile the specified path which mounted a file system.
421 * make a file system on the special device
423 * @param fs_name the file system name
444 /* lock file system */ in dfs_mkfs()
446 /* find the file system operations */ in dfs_mkfs()
457 /* find file system operation */ in dfs_mkfs()
461 LOG_E("The file system (%s) mkfs function was not implement", fs_name); in dfs_mkfs()
469 LOG_E("File system (%s) was not found.", fs_name); in dfs_mkfs()
475 * this function will return the information about a mounted file system.
477 * @param path the path which mounted file system.
529 FINSH_FUNCTION_EXPORT(mkfs, make a file system);