Lines Matching refs:annotation

112 struct annotation;
216 void annotation_line__write(struct annotation_line *al, struct annotation *notes,
220 int __annotation__scnprintf_samples_period(struct annotation *notes,
274 struct LOCKABLE annotation { struct
300 static inline void annotation__init(struct annotation *notes __maybe_unused) in annotation__init() argument
303 void annotation__exit(struct annotation *notes);
305 void annotation__lock(struct annotation *notes) EXCLUSIVE_LOCK_FUNCTION(*notes);
306 void annotation__unlock(struct annotation *notes) UNLOCK_FUNCTION(*notes);
307 bool annotation__trylock(struct annotation *notes) EXCLUSIVE_TRYLOCK_FUNCTION(true, *notes);
309 static inline int annotation__cycles_width(struct annotation *notes) in annotation__cycles_width()
317 static inline int annotation__pcnt_width(struct annotation *notes) in annotation__pcnt_width()
322 static inline bool annotation_line__filter(struct annotation_line *al, struct annotation *notes) in annotation_line__filter()
327 void annotation__set_offsets(struct annotation *notes, s64 size);
328 void annotation__compute_ipc(struct annotation *notes, size_t size);
329 void annotation__mark_jump_targets(struct annotation *notes, struct symbol *sym);
330 void annotation__update_column_widths(struct annotation *notes);
331 void annotation__init_column_widths(struct annotation *notes, struct symbol *sym);
332 void annotation__toggle_full_addr(struct annotation *notes, struct map_symbol *ms);
339 static inline struct sym_hist *annotation__histogram(struct annotation *notes, int idx) in annotation__histogram()
344 static inline struct annotation *symbol__annotation(struct symbol *sym) in symbol__annotation()