/third_party/typescript/tests/baselines/reference/ |
H A D | fatarrowfunctionsOptionalArgs.js | 8 (arg) => 2; 11 arg => 2; 14 (arg = 1) => 3; 17 (arg?) => 4; 20 (arg: number) => 5; 23 (arg: number = 0) => 6; 26 (arg?: number) => 7; 28 // var arg param 29 (...arg: number[]) => 8; 43 ((arg) [all...] |
H A D | protectedMembersThisParameter.js | 28 function bA<T extends A>(this: T, arg: B) { 30 arg.a(); 31 arg.b(); // should error to avoid cross-hierarchy protected access https://www.typescriptlang.org/docs/handbook/2/classes.html#cross-hierarchy-protected-access 33 function bB<T extends B>(this: T, arg: B) { 36 arg.a(); 37 arg.b(); 39 function bC<T extends C>(this: T, arg: B) { 42 arg.a(); // should error 43 arg.b(); // should error 45 function bZ<T extends Z>(this: T, arg [all...] |
H A D | contextuallyTypedClassExpressionMethodDeclaration02.js | 15 method1(arg: A): void; 16 method2(arg: B): void; 21 method1(arg) { 22 arg.numProp = 10; 24 method2(arg) { 25 arg.strProp = "hello"; 32 method1 = (arg) => { 33 arg.numProp = 10; 35 method2 = (arg) => { 36 arg [all...] |
H A D | contextuallyTypedObjectLiteralMethodDeclaration01.js | 11 method1(arg: A): void; 12 method2(arg: B): void; 17 method1(arg) { 18 arg.numProp = 10; 20 method2(arg) { 21 arg.strProp = "hello"; 28 method1: (arg) => { 29 arg.numProp = 10; 31 method2: (arg) => { 32 arg [all...] |
H A D | contextuallyTypedClassExpressionMethodDeclaration01.js | 11 method1(arg: A): void; 12 method2(arg: B): void; 17 static method1(arg) { 18 arg.numProp = 10; 20 static method2(arg) { 21 arg.strProp = "hello"; 28 static method1 = (arg) => { 29 arg.numProp = 10; 31 static method2 = (arg) => { 32 arg [all...] |
H A D | spreadTypeVariable.js | 2 function f1<T extends number>(arg: T) { 3 return { ...arg }; 6 function f2<T extends string[]>(arg: T) { 7 return { ...arg } 10 function f3<T extends number | string[]>(arg: T) { 11 return { ...arg } 14 function f4<T extends number | { [key: string]: any }>(arg: T) { 15 return { ...arg } 18 function f5<T extends string[] | { [key: string]: any }>(arg: T) { 19 return { ...arg } [all...] |
/third_party/rust/crates/clap/tests/ |
H A D | macros.rs | 1 mod arg { modules 4 let arg = clap::arg!(foo: --bar <NUM>); in name_explicit() 5 assert_eq!(arg.get_id(), "foo"); in name_explicit() 6 assert_eq!(arg.get_long(), Some("bar")); in name_explicit() 7 assert_eq!(arg.get_value_names(), Some(vec!["NUM".into()].as_slice())); in name_explicit() 8 assert!(!arg.is_required_set()); in name_explicit() 13 let arg = clap::arg!(--bar <NUM>); in name_from_long() 14 assert_eq!(arg in name_from_long() [all...] |
/third_party/rust/crates/clap/src/ |
H A D | macros.rs | 202 @arg 203 ($arg:expr) 207 debug_assert_eq!($arg.get_value_names(), None, "Flags should precede values"); 208 debug_assert!(!matches!($arg.get_action(), $crate::ArgAction::Append), "Flags should precede `...`"); 210 let mut arg = $arg; variables 212 if arg.get_id() == "" { 213 arg = arg.id(long); 216 let arg 233 let mut arg = $arg; global() variables 294 let mut arg = $arg; global() variables 321 let mut arg = $arg; global() variables 348 let mut arg = $arg; global() variables 377 let mut arg = $arg; global() variables 526 macro_rules! arg { global() macros [all...] |
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | options.c | 145 static const char *match_option(const char *arg, const char *prefix) in match_option() argument 148 if (strncmp(arg, prefix, n) == 0) in match_option() 149 return arg + n; in match_option() 159 static int handle_subopt_val(const char *opt, const char *arg, const struct val_map *map, int *flag) in handle_subopt_val() argument 163 if (*arg++ != '=') in handle_subopt_val() 166 if (strcmp(name, arg) == 0 || strcmp(name, "*") == 0) { in handle_subopt_val() 171 die("invalid argument '%s' in option '%s'", arg, opt); in handle_subopt_val() 198 static int handle_suboption_mask(const char *arg, const char *opt, const struct mask_map *map, unsigned long *flag) in handle_suboption_mask() argument 217 die("error: wrong option '%.*s' for \'%s\'", len, opt, arg); in handle_suboption_mask() 233 int (*fun)(const char *arg, cons 240 const char *arg = opt; handle_switches() local 279 handle_onoff_switch(char *arg, char **next, const struct flag flags[]) handle_onoff_switch() argument 314 handle_switch_setval(const char *arg, const char *opt, const struct flag *flag, int options) handle_switch_setval() argument 349 handle_switch_a(char *arg, char **next) handle_switch_a() argument 357 handle_switch_D(char *arg, char **next) handle_switch_D() argument 384 handle_switch_d(char *arg, char **next) handle_switch_d() argument 415 handle_switch_E(char *arg, char **next) handle_switch_E() argument 422 handle_ftabstop(const char *arg, const char *opt, const struct flag *flag, int options) handle_ftabstop() argument 438 handle_fpasses(const char *arg, const char *opt, const struct flag *flag, int options) handle_fpasses() argument 469 handle_fdiagnostic_prefix(const char *arg, const char *opt, const struct flag *flag, int options) handle_fdiagnostic_prefix() argument 483 handle_fdump_ir(const char *arg, const char *opt, const struct flag *flag, int options) handle_fdump_ir() argument 496 handle_fmemcpy_max_count(const char *arg, const char *opt, const struct flag *flag, int options) handle_fmemcpy_max_count() argument 502 handle_fmax_errors(const char *arg, const char *opt, const struct flag *flag, int options) handle_fmax_errors() argument 508 handle_fmax_warnings(const char *arg, const char *opt, const struct flag *flag, int options) handle_fmax_warnings() argument 539 handle_switch_f(char *arg, char **next) handle_switch_f() argument 547 handle_switch_G(char *arg, char **next) handle_switch_G() argument 555 handle_base_dir(char *arg, char **next) handle_base_dir() argument 563 handle_switch_g(char *arg, char **next) handle_switch_g() argument 571 handle_switch_I(char *arg, char **next) handle_switch_I() argument 598 handle_switch_i(char *arg, char **next) handle_switch_i() argument 618 handle_switch_M(char *arg, char **next) handle_switch_M() argument 628 handle_march(const char *opt, const char *arg, const struct flag *flag, int options) handle_march() argument 635 handle_mcmodel(const char *opt, const char *arg, const struct flag *flag, int options) handle_mcmodel() argument 650 handle_mfloat_abi(const char *opt, const char *arg, const struct flag *flag, int options) handle_mfloat_abi() argument 660 handle_multiarch_dir(char *arg, char **next) handle_multiarch_dir() argument 686 handle_switch_m(char *arg, char **next) handle_switch_m() argument 697 handle_nostdinc(char *arg, char **next) handle_nostdinc() argument 703 handle_switch_n(char *arg, char **next) handle_switch_n() argument 711 handle_switch_O(char *arg, char **next) handle_switch_O() argument 721 handle_switch_o(char *arg, char **next) handle_switch_o() argument 738 handle_switch_p(char *arg, char **next) handle_switch_p() argument 744 handle_switch_s(const char *arg, char **next) handle_switch_s() argument 790 handle_switch_U(char *arg, char **next) handle_switch_U() argument 813 handle_switch_v(char *arg, char **next) handle_switch_v() argument 889 handle_switch_W(char *arg, char **next) handle_switch_W() argument 925 handle_switch_x(char *arg, char **next) handle_switch_x() argument 933 handle_arch(char *arg, char **next) handle_arch() argument 947 handle_param(char *arg, char **next) handle_param() argument 964 handle_os(char *arg, char **next) handle_os() argument 974 handle_version(char *arg, char **next) handle_version() argument 986 handle_long_options(char *arg, char **next) handle_long_options() argument 1006 handle_switch(char *arg, char **next) handle_switch() argument [all...] |
/third_party/skia/third_party/externals/libpng/contrib/tools/ |
H A D | genpng.c | 112 color_of(const char *arg) in color_of() argument 118 if (strcmp(colors[icolor].name, arg) == 0) in color_of() 122 fprintf(stderr, "genpng: invalid color %s\n", arg); in color_of() 127 width_of(const char *arg) in width_of() argument 129 if (strcmp(arg, "filled") == 0) in width_of() 135 double w = strtod(arg, &ep); in width_of() 141 fprintf(stderr, "genpng: invalid line width %s\n", arg); in width_of() 146 coordinate_of(const char *arg) in coordinate_of() argument 149 double w = strtod(arg, &ep); in coordinate_of() 154 fprintf(stderr, "genpng: invalid coordinate value %s\n", arg); in coordinate_of() 174 struct arg global() struct 295 alpha_calc(const struct arg *arg, double x, double y) alpha_calc() argument 366 inside_square_filled(const struct arg *arg, double x, double y) inside_square_filled() argument 372 square_check_line(const struct arg *arg, double x, double y, double w) square_check_line() argument 408 check_square_filled(const struct arg *arg, double x, double y) check_square_filled() argument 419 inside_square(const struct arg *arg, double x, double y) inside_square() argument 428 check_square(const struct arg *arg, double x, double y) check_square() argument 483 inside_circle_filled(const struct arg *arg, double x, double y) inside_circle_filled() argument 489 circle_check_line(const struct arg *arg, double x, double y, double w) circle_check_line() argument 517 check_circle_filled(const struct arg *arg, double x, double y) check_circle_filled() argument 523 inside_circle(const struct arg *arg, double x, double y) inside_circle() argument 529 check_circle(const struct arg *arg, double x, double y) check_circle() argument 601 inside_line(const struct arg *arg, double x, double y) inside_line() argument 607 check_line(const struct arg *arg, double x, double y) check_line() argument 654 shape_of(const char *arg, double width, int f) shape_of() argument 675 parse_arg(struct arg *arg, const char **argv ) parse_arg() argument [all...] |
/third_party/rust/crates/clap/tests/builder/ |
H A D | groups.rs | 1 use clap::{arg, error::ErrorKind, Arg, ArgAction, ArgGroup, Command, Id}; 8 .arg(arg!(-f --flag "some flag")) in required_group_missing_arg() 9 .arg(arg!( -c --color "some other flag")) in required_group_missing_arg() 22 .arg(arg!(-f --flag "some flag")) in non_existing_arg() 23 .arg(arg!(-c --color "some other flag")) in non_existing_arg() 33 .arg(ar in unique_group_name() [all...] |
H A D | require.rs | 2 use clap::{arg, error::ErrorKind, Arg, ArgAction, ArgGroup, Command}; 10 .arg(arg!(-f --flag "some flag").requires("color")) in flag_required() 11 .arg(arg!(-c --color "third flag")) in flag_required() 21 .arg( in flag_required_2() 22 arg!(-f --flag "some flag") in flag_required_2() 26 .arg(arg!(-c --color "third flag").action(ArgAction::SetTrue)) in flag_required_2() 36 .arg(ar in option_required() [all...] |
H A D | default_vals.rs | 7 use clap::{arg, value_parser, Arg, ArgAction, Command}; 15 .arg(arg!(o: -o <opt> "some opt").default_value("default")) in opts() 33 .arg(arg!(o: -o <opt> "some opt").default_value("default")) in default_has_index() 44 .arg( in opt_without_value_fail() 45 arg!(o: -o <opt> "some opt") in opt_without_value_fail() 61 .arg(arg!(--opt <FILE> "some arg") in opt_user_override() [all...] |
H A D | conflicts.rs | 1 use clap::{arg, error::ErrorKind, Arg, ArgAction, ArgGroup, Command}; 9 .arg(arg!(-f --flag "some flag").conflicts_with("other")) in flag_conflict() 10 .arg(arg!(-o --other "some flag")) in flag_conflict() 20 .arg(arg!(-f --flag "some flag").conflicts_with("other")) in flag_conflict_2() 21 .arg(arg!(-o --other "some flag")) in flag_conflict_2() 31 .arg(ar in flag_conflict_with_all() [all...] |
H A D | posix_compatible.rs | 1 use clap::{arg, error::ErrorKind, Arg, ArgAction, Command}; 6 .arg( in flag_overrides_itself() 7 arg!(--flag "some flag" in flag_overrides_itself() 21 .arg( in option_overrides_itself() 22 arg!(--opt <val> "some option") in option_overrides_itself() 39 .arg( in posix_compatible_flags_long() 40 arg!(--flag "some flag") in posix_compatible_flags_long() 44 .arg(arg!(--color "some other flag").action(ArgAction::SetTrue)) in posix_compatible_flags_long() 54 .arg( in posix_compatible_flags_long_rev() [all...] |
H A D | positionals.rs | 1 use clap::{arg, error::ErrorKind, Arg, ArgAction, Command}; 6 .args([arg!(f: -f [flag] "some opt"), arg!([arg] "some arg")]) in only_pos_follow() 10 assert!(m.contains_id("arg")); in only_pos_follow() 13 m.get_one::<String>("arg").map(|v| v.as_str()).unwrap(), in only_pos_follow() 21 .arg(arg!(--exact "filters match exactly").action(ArgAction::SetTrue)) in issue_946() 22 .arg( in issue_946() [all...] |
/third_party/rust/crates/clap/src/builder/ |
H A D | debug_asserts.rs | 60 for arg in cmd.get_arguments() { 61 assert_arg(arg); 67 arg.get_id() 70 if let Some(s) = arg.get_short() { 71 short_flags.push(Flag::Arg(format!("-{s}"), arg.get_id().as_str())); 74 for (short_alias, _) in &arg.short_aliases { 75 short_flags.push(Flag::Arg(format!("-{short_alias}"), arg.get_id().as_str())); 78 if let Some(l) = arg.get_long() { 79 assert!(!l.starts_with('-'), "Argument {}: long {:?} must not start with a `-`, that will be handled by the parser", arg.get_id(), l); 80 long_flags.push(Flag::Arg(format!("--{l}"), arg [all...] |
/third_party/libunwind/libunwind/src/ia64/ |
H A D | unwind_decoder.h | 52 * UNW_DEC_ABI(fmt,abi,context,arg) 53 * UNW_DEC_BR_GR(fmt,brmask,gr,arg) 54 * UNW_DEC_BR_MEM(fmt,brmask,arg) 55 * UNW_DEC_COPY_STATE(fmt,label,arg) 56 * UNW_DEC_EPILOGUE(fmt,t,ecount,arg) 57 * UNW_DEC_FRGR_MEM(fmt,grmask,frmask,arg) 58 * UNW_DEC_FR_MEM(fmt,frmask,arg) 59 * UNW_DEC_GR_GR(fmt,grmask,gr,arg) 60 * UNW_DEC_GR_MEM(fmt,grmask,arg) 61 * UNW_DEC_LABEL_STATE(fmt,label,arg) 107 unw_decode_x1(unsigned char *dp, unsigned char code, void *arg) unw_decode_x1() argument 124 unw_decode_x2(unsigned char *dp, unsigned char code, void *arg) unw_decode_x2() argument 142 unw_decode_x3(unsigned char *dp, unsigned char code, void *arg) unw_decode_x3() argument 162 unw_decode_x4(unsigned char *dp, unsigned char code, void *arg) unw_decode_x4() argument 183 unw_decode_r1(unsigned char *dp, unsigned char code, void *arg) unw_decode_r1() argument 194 unw_decode_r2(unsigned char *dp, unsigned char code, void *arg) unw_decode_r2() argument 209 unw_decode_r3(unsigned char *dp, unsigned char code, void *arg) unw_decode_r3() argument 219 unw_decode_p1(unsigned char *dp, unsigned char code, void *arg) unw_decode_p1() argument 228 unw_decode_p2_p5(unsigned char *dp, unsigned char code, void *arg) unw_decode_p2_p5() argument 277 unw_decode_p6(unsigned char *dp, unsigned char code, void *arg) unw_decode_p6() argument 290 unw_decode_p7_p10(unsigned char *dp, unsigned char code, void *arg) unw_decode_p7_p10() argument 389 unw_decode_b1(unsigned char *dp, unsigned char code, void *arg) unw_decode_b1() argument 401 unw_decode_b2(unsigned char *dp, unsigned char code, void *arg) unw_decode_b2() argument 411 unw_decode_b3_x4(unsigned char *dp, unsigned char code, void *arg) unw_decode_b3_x4() argument 447 unw_decode(unsigned char *dp, int inside_body, void *arg) unw_decode() argument [all...] |
/third_party/rust/crates/clap/tests/derive/ |
H A D | options.rs | 26 #[arg(short, long)] in required_option() 27 arg: i32, in required_option() 30 Opt { arg: 42 }, in required_option() 34 Opt { arg: 42 }, in required_option() 38 Opt { arg: 42 }, in required_option() 39 Opt::try_parse_from(["test", "--arg", "42"]).unwrap() in required_option() 42 Opt { arg: 42 }, in required_option() 43 Opt::try_parse_from(["test", "--arg", "24", "--arg", "42"]).unwrap() in required_option() 53 #[arg(shor in option_with_default() [all...] |
H A D | value_enum.rs | 22 #[arg(value_enum)] in basic() 23 arg: ArgChoice, in basic() 28 arg: ArgChoice::Foo in basic() 34 arg: ArgChoice::Bar in basic() 57 #[arg(value_enum, default_value_t)] in default_value() 58 arg: ArgChoice, in default_value() 63 arg: ArgChoice::Foo in default_value() 69 arg: ArgChoice::Bar in default_value() 75 arg: ArgChoice::Bar in default_value() 91 #[arg(value_enu in vec_for_default_values_t() [all...] |
/third_party/rust/crates/bindgen/bindgen/ |
H A D | log_stubs.rs | 4 (target: $target:expr, $lvl:expr, $($arg:tt)+) => {{ 6 let _ = log!($lvl, $($arg)+); 8 ($lvl:expr, $($arg:tt)+) => {{ 10 let _ = format_args!($($arg)+); 14 (target: $target:expr, $($arg:tt)+) => { log!(target: $target, "", $($arg)+) }; 15 ($($arg:tt)+) => { log!("", $($arg)+) }; 18 (target: $target:expr, $($arg:tt)*) => { log!(target: $target, "", $($arg)*) }; [all...] |
/third_party/rust/crates/clap/src/parser/ |
H A D | parser.rs | 65 // Already met any valid arg(then we shouldn't expect subcommands after it). 77 // If any arg sets .last(true) 106 // Does the arg match a subcommand name, or any of its aliases (if defined) 158 "Parser::get_matches_with: FlagSubCommand found in long arg {:?}", 164 ParseResult::EqualsNotProvided { arg } => { 168 arg, 172 ParseResult::NoMatchingArg { arg } => { 177 &arg, 183 ParseResult::UnneededAttachedValue { rest, used, arg } => { 188 arg, [all...] |
/third_party/rust/crates/bindgen/bindgen-cli/ |
H A D | options.rs | 52 #[arg(long)] 55 #[arg(long, value_name = "VARIANT")] 58 #[arg(long, value_name = "REGEX")] 61 #[arg(long, value_name = "REGEX")] 64 #[arg(long, value_name = "REGEX")] 67 #[arg(long, value_name = "REGEX")] 70 #[arg(long, value_name = "REGEX")] 73 #[arg(long, value_name = "REGEX")] 76 #[arg(long, value_name = "VARIANT")] 79 #[arg(lon [all...] |
/third_party/toybox/toys/pending/ |
H A D | sh.c | 122 struct sh_arg arg; 208 // arg = append to this 213 static void expand_arg(struct sh_arg *arg, char *new, unsigned flags, in expand_arg() argument 216 if (!(arg->c&32)) arg->v = xrealloc(arg->v, sizeof(void *)*(arg->c+33)); in expand_arg() 218 arg->v[arg->c++] = new; in expand_arg() 219 arg in expand_arg() 295 run_command(struct sh_arg *arg, int **rdlist) run_command() argument 608 argxtend(struct sh_arg *arg) argxtend() argument 617 struct sh_arg arg[1]; global() member 650 struct sh_arg *arg; // arguments to function call global() member 702 struct sh_arg *arg = 0; parse_line() local [all...] |
/third_party/ntfs-3g/libfuse-lite/ |
H A D | fuse_lowlevel.c | 198 static int send_reply(fuse_req_t req, int error, const void *arg, in send_reply() argument 205 iov[1].iov_base = (void *)(uintptr_t) arg; in send_reply() 282 static int send_reply_ok(fuse_req_t req, const void *arg, size_t argsize) in send_reply_ok() argument 284 return send_reply(req, 0, arg, argsize); in send_reply_ok() 320 static void fill_entry(struct fuse_entry_out *arg, in fill_entry() argument 323 arg->nodeid = e->ino; in fill_entry() 324 arg->generation = e->generation; in fill_entry() 325 arg->entry_valid = calc_timeout_sec(e->entry_timeout); in fill_entry() 326 arg->entry_valid_nsec = calc_timeout_nsec(e->entry_timeout); in fill_entry() 327 arg in fill_entry() 332 fill_open(struct fuse_open_out *arg, const struct fuse_file_info *f) fill_open() argument 344 struct fuse_entry_out arg; fuse_reply_entry() local 363 } arg; fuse_reply_create() local 381 struct fuse_attr_out arg; fuse_reply_attr() local 399 struct fuse_open_out arg; fuse_reply_open() local 408 struct fuse_write_out arg; fuse_reply_write() local 423 struct fuse_statfs_out arg; fuse_reply_statfs() local 434 struct fuse_getxattr_out arg; fuse_reply_xattr() local 444 struct fuse_lk_out arg; fuse_reply_lock() local 461 struct fuse_bmap_out arg; fuse_reply_bmap() local 471 struct fuse_ioctl_out arg; fuse_reply_ioctl() local 503 const struct fuse_forget_in *arg = (const struct fuse_forget_in *) inarg; do_forget() local 523 const struct fuse_setattr_in *arg = (const struct fuse_setattr_in *) inarg; do_setattr() local 544 const struct fuse_access_in *arg = (const struct fuse_access_in *) inarg; do_access() local 564 const struct fuse_mknod_in *arg = (const struct fuse_mknod_in *) inarg; do_mknod() local 590 const struct fuse_mkdir_in *arg = (const struct fuse_mkdir_in *) inarg; do_mkdir() local 634 const struct fuse_rename_in *arg = (const struct fuse_rename_in *) inarg; do_rename() local 646 const struct fuse_link_in *arg = (const struct fuse_link_in *) inarg; do_link() local 656 const struct fuse_create_in *arg = (const struct fuse_create_in *) inarg; do_create() local 677 const struct fuse_open_in *arg = (const struct fuse_open_in *) inarg; do_open() local 691 const struct fuse_read_in *arg = (const struct fuse_read_in *) inarg; do_read() local 706 const struct fuse_write_in *arg = (const struct fuse_write_in *) inarg; do_write() local 728 const struct fuse_flush_in *arg = (const struct fuse_flush_in *) inarg; do_flush() local 746 const struct fuse_release_in *arg = (const struct fuse_release_in *) inarg; do_release() local 766 const struct fuse_fsync_in *arg = (const struct fuse_fsync_in *) inarg; do_fsync() local 781 const struct fuse_open_in *arg = (const struct fuse_open_in *) inarg; do_opendir() local 795 const struct fuse_read_in *arg = (const struct fuse_read_in *) inarg; do_readdir() local 810 const struct fuse_release_in *arg = (const struct fuse_release_in *) inarg; do_releasedir() local 826 const struct fuse_fsync_in *arg = (const struct fuse_fsync_in *) inarg; do_fsyncdir() local 857 const struct fuse_setxattr_in *arg = (const struct fuse_setxattr_in *) inarg; do_setxattr() local 869 const struct fuse_getxattr_in *arg = (const struct fuse_getxattr_in *) inarg; do_getxattr() local 879 const struct fuse_getxattr_in *arg = (const struct fuse_getxattr_in *) inarg; do_listxattr() local 913 const struct fuse_lk_in *arg = (const struct fuse_lk_in *) inarg; do_getlk() local 931 const struct fuse_lk_in *arg = (const struct fuse_lk_in *) inarg; do_setlk_common() local 992 const struct fuse_interrupt_in *arg = (const struct fuse_interrupt_in *) inarg; do_interrupt() local 1032 const struct fuse_bmap_in *arg = (const struct fuse_bmap_in *) inarg; do_bmap() local 1042 const struct fuse_ioctl_in *arg = (const struct fuse_ioctl_in *) inarg; do_ioctl() local 1075 const struct fuse_init_in *arg = (const struct fuse_init_in *) inarg; do_init() local 1377 fuse_ll_opt_proc(void *data, const char *arg, int key, struct fuse_args *outargs) fuse_ll_opt_proc() argument [all...] |