Symbol: fuse_opt_add_arg
lib/librefuse/fuse_opt.h
61
int fuse_opt_add_arg(struct fuse_args *, const char *);
lib/librefuse/refuse.c
1066
if (fuse_opt_add_arg(&args, "-odebug") != 0)
lib/librefuse/refuse/v11.c
55
if (fuse_opt_add_arg(&args, "dummy") != 0)
lib/librefuse/refuse/v11.c
60
if (fuse_opt_add_arg(&args, argv[i]) != 0)
lib/librefuse/refuse/v21.c
49
if (fuse_opt_add_arg(&args, "-o") != 0)
lib/librefuse/refuse/v21.c
52
if (fuse_opt_add_arg(&args, opts) != 0)
lib/librefuse/refuse_lowlevel.c
104
return fuse_opt_add_arg(args, "-ofsname=refuse");
lib/librefuse/refuse_lowlevel.c
118
rv = fuse_opt_add_arg(args, arg);
lib/librefuse/refuse_opt.c
262
if (fuse_opt_add_arg(outargs, arg) == -1)
lib/librefuse/refuse_opt.c
446
if (fuse_opt_add_arg(outargs, args->argv[0]) == -1)
lib/librefuse/refuse_opt.c
480
if (fuse_opt_add_arg(outargs, arg) == -1)
tests/lib/librefuse/t_refuse_opt.c
210
RL(fuse_opt_add_arg(&args, "foofs"));
tests/lib/librefuse/t_refuse_opt.c
211
RL(fuse_opt_add_arg(&args, "-o"));
tests/lib/librefuse/t_refuse_opt.c
212
RL(fuse_opt_add_arg(&args, "number=1,string=foo"));
tests/lib/librefuse/t_refuse_opt.c
213
RL(fuse_opt_add_arg(&args, "bar"));
tests/lib/librefuse/t_refuse_opt.c
239
RL(fuse_opt_add_arg(&args, "foofs"));
tests/lib/librefuse/t_refuse_opt.c
240
RL(fuse_opt_add_arg(&args, "-o"));
tests/lib/librefuse/t_refuse_opt.c
241
RL(fuse_opt_add_arg(&args, "number=1,string=foo"));
tests/lib/librefuse/t_refuse_opt.c
242
RL(fuse_opt_add_arg(&args, "bar"));
tests/lib/librefuse/t_refuse_opt.c
267
RL(fuse_opt_add_arg(&args, "foofs"));
tests/lib/librefuse/t_refuse_opt.c
268
RL(fuse_opt_add_arg(&args, "-o"));
tests/lib/librefuse/t_refuse_opt.c
269
RL(fuse_opt_add_arg(&args, "number=1,string=foo"));
tests/lib/librefuse/t_refuse_opt.c
270
RL(fuse_opt_add_arg(&args, "bar"));
tests/lib/librefuse/t_refuse_opt.c
282
RL(fuse_opt_add_arg(&args, "foofs"));
tests/lib/librefuse/t_refuse_opt.c
283
RL(fuse_opt_add_arg(&args, "-onumber=1,unknown,string=foo"));
tests/lib/librefuse/t_refuse_opt.c
284
RL(fuse_opt_add_arg(&args, "bar"));
tests/lib/librefuse/t_refuse_opt.c
298
RL(fuse_opt_add_arg(&args, "foofs"));
tests/lib/librefuse/t_refuse_opt.c
299
RL(fuse_opt_add_arg(&args, "bar"));
tests/lib/librefuse/t_refuse_opt.c
300
RL(fuse_opt_add_arg(&args, "baz"));
tests/lib/librefuse/t_refuse_opt.c
301
RL(fuse_opt_add_arg(&args, "-o"));
tests/lib/librefuse/t_refuse_opt.c
302
RL(fuse_opt_add_arg(&args, "number=1"));
tests/lib/librefuse/t_refuse_opt.c
303
RL(fuse_opt_add_arg(&args, "-o"));
tests/lib/librefuse/t_refuse_opt.c
304
RL(fuse_opt_add_arg(&args, "unknown"));
tests/lib/librefuse/t_refuse_opt.c
305
RL(fuse_opt_add_arg(&args, "-o"));
tests/lib/librefuse/t_refuse_opt.c
306
RL(fuse_opt_add_arg(&args, "string=foo"));
tests/lib/librefuse/t_refuse_opt.c
321
RL(fuse_opt_add_arg(&args, "foofs"));
tests/lib/librefuse/t_refuse_opt.c
322
RL(fuse_opt_add_arg(&args, "-n"));
tests/lib/librefuse/t_refuse_opt.c
323
RL(fuse_opt_add_arg(&args, "3"));
tests/lib/librefuse/t_refuse_opt.c
335
RL(fuse_opt_add_arg(&args, "foofs"));
tests/lib/librefuse/t_refuse_opt.c
336
RL(fuse_opt_add_arg(&args, "-n3"));
tests/lib/librefuse/t_refuse_opt.c
348
RL(fuse_opt_add_arg(&args, "foofs"));
tests/lib/librefuse/t_refuse_opt.c
349
RL(fuse_opt_add_arg(&args, "-o"));
tests/lib/librefuse/t_refuse_opt.c
350
RL(fuse_opt_add_arg(&args, "number2"));
tests/lib/librefuse/t_refuse_opt.c
362
RL(fuse_opt_add_arg(&args, "foofs"));
tests/lib/librefuse/t_refuse_opt.c
363
RL(fuse_opt_add_arg(&args, "--number=four"));
tests/lib/librefuse/t_refuse_opt.c
375
RL(fuse_opt_add_arg(&args, "foofs"));
tests/lib/librefuse/t_refuse_opt.c
376
RL(fuse_opt_add_arg(&args, "--"));
tests/lib/librefuse/t_refuse_opt.c
377
RL(fuse_opt_add_arg(&args, "-onumber=1"));
tests/lib/librefuse/t_refuse_opt.c
378
RL(fuse_opt_add_arg(&args, "-ostring=foo"));
tests/lib/librefuse/t_refuse_opt.c
392
RL(fuse_opt_add_arg(&args, "foofs"));
tests/lib/librefuse/t_refuse_opt.c
393
RL(fuse_opt_add_arg(&args, "--"));
tests/lib/librefuse/t_refuse_opt.c
394
RL(fuse_opt_add_arg(&args, "-onumber=1"));
tests/lib/librefuse/t_refuse_opt.c
50
RL(fuse_opt_add_arg(&args, "foo"));
tests/lib/librefuse/t_refuse_opt.c
51
RL(fuse_opt_add_arg(&args, "bar"));