Lines Matching refs:parsed_options
4497 static struct fuse_chan *try_fuse_mount(char *parsed_options) argument
4505 fuse_opt_add_arg(&margs, parsed_options) == -1)) {
4517 static int set_fuseblk_options(char **parsed_options) argument
4531 if (ntfs_strappend(parsed_options, options))
4536 static struct fuse_session *mount_fuse(char *parsed_options) argument
4541 ctx->fc = try_fuse_mount(parsed_options);
4570 static void setup_logging(char *parsed_options) argument
4595 ntfs_log_info("Mount options: %s\n", parsed_options);
4600 char *parsed_options = NULL; local
4646 parsed_options = parse_mount_options(ctx, &opts, TRUE);
4647 if (!parsed_options) {
4735 if (ntfs_strinsert(&parsed_options, ",ro"))
4739 if (ctx->rw && ntfs_strinsert(&parsed_options, ",rw"))
4742 if (ctx->blkdev && set_fuseblk_options(&parsed_options))
4764 if (ntfs_strinsert(&parsed_options,
4780 if (ntfs_strinsert(&parsed_options, ",default_permissions")) {
4798 if (ntfs_strinsert(&parsed_options, ",default_permissions")) {
4830 se = mount_fuse(parsed_options);
4842 setup_logging(parsed_options);
4869 free(parsed_options);