Home
last modified time | relevance | path

Searched refs:PerfFileFormat (Results 1 – 14 of 14) sorted by relevance

/system/extras/simpleperf/
Drecord_file.h97 std::map<int, PerfFileFormat::SectionDesc> features_;
110 const PerfFileFormat::FileHeader& FileHeader() const { in FileHeader()
123 const std::map<int, PerfFileFormat::SectionDesc>& FeatureSectionDescriptors() const { in FeatureSectionDescriptors()
174 bool ReadIdsForAttr(const PerfFileFormat::FileAttr& attr, std::vector<uint64_t>* ids);
187 PerfFileFormat::FileHeader header_;
188 std::vector<PerfFileFormat::FileAttr> file_attrs_;
191 std::map<int, PerfFileFormat::SectionDesc> feature_section_descriptors_;
Dcmd_debug_unwind_test.cpp62 const std::map<int, PerfFileFormat::SectionDesc>& features = reader->FeatureSectionDescriptors(); in TEST()
63 ASSERT_NE(features.find(PerfFileFormat::FEAT_FILE), features.end()); in TEST()
64 ASSERT_NE(features.find(PerfFileFormat::FEAT_META_INFO), features.end()); in TEST()
Dcmd_debug_unwind.cpp197 ScopedCurrentArch scoped_arch(GetArchType(reader_->ReadFeatureString(PerfFileFormat::FEAT_ARCH))); in UnwindRecordFile()
345 const std::map<int, PerfFileFormat::SectionDesc>& features = reader_->FeatureSectionDescriptors(); in WriteFeatureSections()
347 for (int feature : {PerfFileFormat::FEAT_FILE, PerfFileFormat::FEAT_META_INFO}) { in WriteFeatureSections()
358 while (it != features.end() && it->first < PerfFileFormat::FEAT_FILE) { in WriteFeatureSections()
366 if (it != features.end() && it->first == PerfFileFormat::FEAT_FILE) { in WriteFeatureSections()
374 if (it != features.end() && it->first == PerfFileFormat::FEAT_META_INFO) { in WriteFeatureSections()
Dcmd_trace_sched_test.cpp40 using namespace PerfFileFormat;
Drecord_file_format.h70 namespace PerfFileFormat {
Drecord_file_reader.cpp30 using namespace PerfFileFormat;
32 namespace PerfFileFormat { namespace
547 if (HasFeature(PerfFileFormat::FEAT_FILE)) { in LoadBuildIdAndFileFeatures()
633 PerfFileFormat::FileHeader header; in IsPerfDataFile()
Drecord_file_test.cpp33 using namespace PerfFileFormat;
Dcmd_kmem.cpp571 record_file_reader_->ReadFeatureString(PerfFileFormat::FEAT_ARCH); in ReadFeaturesFromRecordFile()
582 if (record_file_reader_->HasFeature(PerfFileFormat::FEAT_TRACING_DATA)) { in ReadFeaturesFromRecordFile()
585 PerfFileFormat::FEAT_TRACING_DATA, &tracing_data)) { in ReadFeaturesFromRecordFile()
Dcmd_report.cpp811 record_file_reader_->ReadFeatureString(PerfFileFormat::FEAT_ARCH); in ReadFeaturesFromRecordFile()
840 if (record_file_reader_->HasFeature(PerfFileFormat::FEAT_TRACING_DATA)) { in ReadFeaturesFromRecordFile()
843 PerfFileFormat::FEAT_TRACING_DATA, &tracing_data)) { in ReadFeaturesFromRecordFile()
Drecord_file_writer.cpp38 using namespace PerfFileFormat;
Dcmd_dumprecord.cpp39 using namespace PerfFileFormat;
Dreport_lib_interface.cpp454 int feature = PerfFileFormat::GetFeatureId(feature_name); in GetFeatureSection()
Dcmd_record.cpp1679 if (!record_file_writer_->WriteFeatureString(PerfFileFormat::FEAT_OSRELEASE, in DumpAdditionalFeatures()
1683 if (!record_file_writer_->WriteFeatureString(PerfFileFormat::FEAT_ARCH, in DumpAdditionalFeatures()
Dcmd_record_test.cpp51 using namespace PerfFileFormat;