Lines Matching refs:args
3014 struct fuse_session *fuse_session_new(struct fuse_args *args,
3027 if (args->argc == 0) {
3042 if(fuse_opt_parse(args, se, fuse_ll_opts, NULL) == -1)
3051 if(fuse_opt_add_arg(args, "-oallow_other") == -1)
3054 mo = parse_mount_opts(args);
3058 if(args->argc == 1 &&
3059 args->argv[0][0] == '-') {
3062 } else if (args->argc != 1) {
3065 for(i = 1; i < args->argc-1; i++)
3066 fuse_log(FUSE_LOG_ERR, "%s ", args->argv[i]);
3067 fuse_log(FUSE_LOG_ERR, "%s'\n", args->argv[i]);
3100 fuse_opt_free_args(args);