Lines Matching defs:options
75 struct options
128 options()
166 ~options()
181 << "usage: " << prog_name << " [options] [<path-to-elf-file>]\n"
182 << " where options can be: \n"
244 parse_command_line(int argc, char* argv[], options& opts)
452 /// @param opts the options instance to use.
457 maybe_check_suppression_files(const options& opts)
478 /// @param opts the options instance to use.
482 maybe_check_header_files(const options& opts)
503 /// @param opts the options where to get the suppression
506 set_suppressions(abigail::elf_based_reader& rdr, options& opts)
536 /// command-line options.
540 /// @param opts the command line options.
542 set_generic_options(abigail::elf_based_reader& rdr, options& opts)
544 rdr.options().drop_undefined_syms = opts.drop_undefined_syms;
545 rdr.options().show_stats = opts.show_stats;
546 rdr.options().do_log = opts.do_log;
547 rdr.options().leverage_dwarf_factorization =
549 rdr.options().assume_odr_for_cplusplus =
560 /// @param opts the options of the program.
567 options& opts)
822 /// @param opts the options this program was created with.
829 options& opts)
926 /// Convert options::di_root_paths into
927 /// options::prepared_di_root_paths which is the suitable type format
930 /// @param o the options to consider.
932 prepare_di_root_paths(options& o)
941 options opts;