Lines Matching refs:fio_option
41 struct fio_option { struct
68 struct fio_option *inv_opt; /* cached lookup */ argument
69 int (*verify)(struct fio_option *, void *); argument
82 extern int parse_option(char *, const char *, struct fio_option *, struct fio_option **, void *, in… argument
83 extern void sort_options(char **, struct fio_option *, int);
84 extern int parse_cmd_option(const char *t, const char *l, struct fio_option *, void *);
85 extern int show_cmd_help(struct fio_option *, const char *);
86 extern void fill_default_options(void *, struct fio_option *);
87 extern void option_init(struct fio_option *);
88 extern void options_init(struct fio_option *);
89 extern void options_free(struct fio_option *, void *);
111 static inline void *td_var(struct thread_options *to, struct fio_option *o, in td_var()