Home
last modified time | relevance | path

Searched refs:SectionDesc (Results 1 – 5 of 5) sorted by relevance

/system/extras/simpleperf/
Drecord_file_format.h61 struct SectionDesc { struct
72 SectionDesc attrs; argument
73 SectionDesc data;
74 SectionDesc event_types;
80 SectionDesc ids;
Drecord_file.cpp223 uint64_t feature_header_size = feature_count * sizeof(SectionDesc); in WriteFeatureHeader()
260 SectionDesc desc; in WriteBuildIdFeature()
264 if (fseek(record_fp_, feature_offset + current_feature_index_ * sizeof(SectionDesc), SEEK_SET) == in WriteBuildIdFeature()
269 if (fwrite(&desc, sizeof(SectionDesc), 1, record_fp_) != 1) { in WriteBuildIdFeature()
419 std::vector<SectionDesc> RecordFileReader::FeatureSectionDescriptors() { in FeatureSectionDescriptors()
420 std::vector<SectionDesc> result; in FeatureSectionDescriptors()
431 const SectionDesc* p = reinterpret_cast<const SectionDesc*>(mmap_addr_ + feature_section_offset); in FeatureSectionDescriptors()
Dcmd_dumprecord.cpp168 std::vector<SectionDesc> sections = record_file_reader_->FeatureSectionDescriptors(); in DumpFeatureSection()
172 SectionDesc& section = sections[i]; in DumpFeatureSection()
Drecord_file.h98 std::vector<PerfFileFormat::SectionDesc> FeatureSectionDescriptors();
Drecord_file_test.cpp88 std::vector<SectionDesc> sections = reader->FeatureSectionDescriptors(); in TEST_F()