Symbol: fuse_opt_match
lib/libfuse/fuse.c
215
return (fuse_opt_match(fuse_lib_opts, opt));
lib/libfuse/fuse_opt.c
430
DEF(fuse_opt_match);
lib/libfuse/fuse_opt.h
43
int fuse_opt_match(const struct fuse_opt *, const char *);
lib/libfuse/fuse_private.h
172
PROTO(fuse_opt_match);
regress/lib/libfuse/fuse-opt-match.c
49
assert(fuse_opt_match(emptyopts, "debug") == 0);
regress/lib/libfuse/fuse-opt-match.c
51
assert(fuse_opt_match(opts, NULL) == 0);
regress/lib/libfuse/fuse-opt-match.c
52
assert(fuse_opt_match(opts, "-p ") == 1);
regress/lib/libfuse/fuse-opt-match.c
53
assert(fuse_opt_match(opts, "-C") == 1);
regress/lib/libfuse/fuse-opt-match.c
54
assert(fuse_opt_match(opts, "-c") == 0);
regress/lib/libfuse/fuse-opt-match.c
55
assert(fuse_opt_match(opts, "-V") == 1);
regress/lib/libfuse/fuse-opt-match.c
56
assert(fuse_opt_match(opts, "--version") == 1);
regress/lib/libfuse/fuse-opt-match.c
57
assert(fuse_opt_match(opts, "-h") == 1);
regress/lib/libfuse/fuse-opt-match.c
58
assert(fuse_opt_match(opts, "const=false") == 1);
regress/lib/libfuse/fuse-opt-match.c
59
assert(fuse_opt_match(opts, "const=falsefalse") == 0);
regress/lib/libfuse/fuse-opt-match.c
60
assert(fuse_opt_match(opts, "cache=no") == 1);
regress/lib/libfuse/fuse-opt-match.c
61
assert(fuse_opt_match(opts, "cache=yes") == 1);
regress/lib/libfuse/fuse-opt-match.c
62
assert(fuse_opt_match(opts, "debug") == 1);
regress/lib/libfuse/fuse-opt-match.c
63
assert(fuse_opt_match(opts, "ro") == 1);
regress/lib/libfuse/fuse-opt-match.c
64
assert(fuse_opt_match(opts, "ro_fallback") == 0);
regress/lib/libfuse/fuse-opt-match.c
65
assert(fuse_opt_match(opts, "--foo=bar") == 1);
regress/lib/libfuse/fuse-opt-match.c
66
assert(fuse_opt_match(opts, "bars=foo") == 1);
regress/lib/libfuse/fuse-opt-match.c
67
assert(fuse_opt_match(opts, "--fool=bool") == 1);
regress/lib/libfuse/fuse-opt-match.c
68
assert(fuse_opt_match(opts, "--fool=1") == 1);
regress/lib/libfuse/fuse-opt-match.c
69
assert(fuse_opt_match(opts, "-x bar") == 1);
regress/lib/libfuse/fuse-opt-match.c
70
assert(fuse_opt_match(opts, "-xbar") == 1);
regress/lib/libfuse/fuse-opt-match.c
71
assert(fuse_opt_match(opts, "-n 100") == 1);
regress/lib/libfuse/fuse-opt-match.c
72
assert(fuse_opt_match(opts, "-n100") == 1);
regress/lib/libfuse/fuse-opt-match.c
73
assert(fuse_opt_match(opts, "-P") == 1);