Lines Matching defs:outargs
29 struct fuse_args outargs;
112 return fuse_opt_add_arg(&ctx->outargs, arg);
161 int res = ctx->proc(ctx->data, arg, key, &ctx->outargs);
365 ctx->nonopt = ctx->outargs.argc;
383 if (fuse_opt_insert_arg(&ctx->outargs, 1, "-o") == -1 ||
384 fuse_opt_insert_arg(&ctx->outargs, 2, ctx->opts) == -1)
389 if (ctx->nonopt && ctx->nonopt == ctx->outargs.argc &&
390 strcmp(ctx->outargs.argv[ctx->outargs.argc - 1], "--") == 0) {
391 free(ctx->outargs.argv[ctx->outargs.argc - 1]);
392 ctx->outargs.argv[--ctx->outargs.argc] = NULL;
417 *args = ctx.outargs;
418 ctx.outargs = tmp;
421 fuse_opt_free_args(&ctx.outargs);