Lines Matching refs:opt
3109 struct annotation_options *opt = data; in annotation__config() local
3115 perf_config_u8(&opt->offset_level, "offset_level", value); in annotation__config()
3117 if (opt->offset_level > ANNOTATION__MAX_OFFSET_LEVEL) in annotation__config()
3118 opt->offset_level = ANNOTATION__MAX_OFFSET_LEVEL; in annotation__config()
3119 else if (opt->offset_level < ANNOTATION__MIN_OFFSET_LEVEL) in annotation__config()
3120 opt->offset_level = ANNOTATION__MIN_OFFSET_LEVEL; in annotation__config()
3122 opt->hide_src_code = perf_config_bool("hide_src_code", value); in annotation__config()
3124 opt->jump_arrows = perf_config_bool("jump_arrows", value); in annotation__config()
3126 opt->show_linenr = perf_config_bool("show_linenr", value); in annotation__config()
3128 opt->show_nr_jumps = perf_config_bool("show_nr_jumps", value); in annotation__config()
3136 opt->use_offset = perf_config_bool("use_offset", value); in annotation__config()
3138 opt->disassembler_style = value; in annotation__config()
3146 void annotation_config__init(struct annotation_options *opt) in annotation_config__init() argument
3148 perf_config(annotation__config, opt); in annotation_config__init()
3172 int annotate_parse_percent_type(const struct option *opt, const char *_str, in annotate_parse_percent_type() argument
3175 struct annotation_options *opts = opt->value; in annotate_parse_percent_type()