Home
last modified time | relevance | path

Searched refs:GetReportPath (Results 1 – 7 of 7) sorted by relevance

/system/extras/simpleperf/
DSampleComparator.h59 BUILD_COMPARE_STRING_FUNCTION(CompareDso, map->dso->GetReportPath().data());
61 BUILD_COMPARE_STRING_FUNCTION(CompareDsoFrom, branch_from.map->dso->GetReportPath().data());
DSampleDisplayer.h85 return std::string{sample->map->dso->GetReportPath()}; in DisplayDso()
95 return std::string{sample->branch_from.map->dso->GetReportPath()}; in DisplayDsoFrom()
Ddso.h148 virtual std::string_view GetReportPath() const { return Path(); } in GetReportPath() function
Dcmd_report_sample.cpp716 file->set_path(std::string{dso->GetReportPath()}); in PrintFileInfoInProtobuf()
765 FprintIndented(report_fp_, 1, "file: %s\n", entries[0].dso->GetReportPath().data()); in PrintSampleRecord()
776 FprintIndented(report_fp_, 2, "file: %s\n", entries[i].dso->GetReportPath().data()); in PrintSampleRecord()
Dreport_lib_interface.cpp287 entry.symbol.dso_name = report_entry.dso->GetReportPath().data(); in SetCurrentSample()
Ddso.cpp507 std::string_view GetReportPath() const override { in GetReportPath() function in simpleperf::ElfDso
Dcmd_report.cpp232 if (!dso_filter_.empty() && dso_filter_.count(sample->map->dso->GetReportPath().data()) == 0) { in FilterSample()