format_flags.h
Go to the documentation of this file.00001
00012 #ifndef FORMAT_FLAGS_H
00013 #define FORMAT_FLAGS_H
00014
00020 enum format_flags {
00021 ff_none = 0,
00023 ff_vma = 1 << 0,
00025 ff_linenr_info = 1 << 1,
00027 ff_image_name = 1 << 3,
00029 ff_app_name = 1 << 4,
00031 ff_symb_name = 1 << 5,
00032
00035
00036 ff_nr_samples = 1 << 6,
00038 ff_nr_samples_cumulated = 1 << 7,
00040 ff_percent = 1 << 8,
00042 ff_percent_cumulated = 1 << 9,
00047 ff_percent_details = 1 << 10,
00053 ff_percent_cumulated_details = 1 << 11,
00055 ff_diff = 1 << 12,
00057 };
00058
00059
00063 enum column_flags {
00064 cf_none = 0,
00065 cf_64bit_vma = 1 << 0,
00066 cf_image_name = 1 << 1
00067 };
00068
00069 #endif // FORMAT_FLAGS_H