• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef WIRELESS_ANDROID_LOGGING_AWP_PERF_DATA_CONVERTER_H_
2 #define WIRELESS_ANDROID_LOGGING_AWP_PERF_DATA_CONVERTER_H_
3 
4 #include <string>
5 
6 #include "perfprofd_record-fwd.h"
7 
8 namespace perfprofd {
9 struct Symbolizer;
10 }  // namespace perfprofd
11 
12 namespace android {
13 namespace perfprofd {
14 
15 PerfprofdRecord*
16 RawPerfDataToAndroidPerfProfile(const std::string &perf_file,
17                                 ::perfprofd::Symbolizer* symbolizer,
18                                 bool symbolize_everything);
19 
20 }  // namespace perfprofd
21 }  // namespace android
22 
23 #endif  // WIRELESS_ANDROID_LOGGING_AWP_PERF_DATA_CONVERTER_H_
24