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