• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /**
2  * @file populate.h
3  * Fill up a profile_container from inverted profiles
4  *
5  * @remark Copyright 2003 OProfile authors
6  * @remark Read the file COPYING
7  *
8  * @author John Levon
9  * @author Philippe Elie
10  */
11 
12 #ifndef POPULATE_H
13 #define POPULATE_H
14 
15 class profile_container;
16 class inverted_profile;
17 class string_filter;
18 
19 
20 /// Load all sample file information for exactly one binary image.
21 void
22 populate_for_image(profile_container & samples, inverted_profile const & ip,
23    string_filter const & symbol_filter, bool * has_debug_info);
24 
25 #endif /* POPULATE_H */
26