Lines Matching full:notes

229 void annotation_line__write(struct annotation_line *al, struct annotation *notes,
232 int __annotation__scnprintf_samples_period(struct annotation *notes,
314 static inline void annotation__init(struct annotation *notes __maybe_unused) in annotation__init()
317 void annotation__exit(struct annotation *notes);
319 void annotation__lock(struct annotation *notes) EXCLUSIVE_LOCK_FUNCTION(*notes);
320 void annotation__unlock(struct annotation *notes) UNLOCK_FUNCTION(*notes);
321 bool annotation__trylock(struct annotation *notes) EXCLUSIVE_TRYLOCK_FUNCTION(true, *notes);
323 static inline int annotation__cycles_width(struct annotation *notes) in annotation__cycles_width() argument
325 if (notes->branch && annotate_opts.show_minmax_cycle) in annotation__cycles_width()
328 return notes->branch ? ANNOTATION__IPC_WIDTH + ANNOTATION__CYCLES_WIDTH : 0; in annotation__cycles_width()
331 static inline int annotation__pcnt_width(struct annotation *notes) in annotation__pcnt_width() argument
333 return (symbol_conf.show_total_period ? 12 : 7) * notes->nr_events; in annotation__pcnt_width()
341 void annotation__set_offsets(struct annotation *notes, s64 size);
342 void annotation__mark_jump_targets(struct annotation *notes, struct symbol *sym);
343 void annotation__update_column_widths(struct annotation *notes);
344 void annotation__init_column_widths(struct annotation *notes, struct symbol *sym);
345 void annotation__toggle_full_addr(struct annotation *notes, struct map_symbol *ms);
352 static inline struct sym_hist *annotation__histogram(struct annotation *notes, int idx) in annotation__histogram() argument
354 return annotated_source__histogram(notes->src, idx); in annotation__histogram()
365 struct annotated_branch *annotation__get_branch(struct annotation *notes);