Lines Matching refs:dso
1848 for (Dso* dso : dso_v) { in DumpBuildIdFeature()
1851 if (!dso->HasDumpId() && !event_selection_set_.HasAuxTrace()) { in DumpBuildIdFeature()
1854 if (dso->type() == DSO_KERNEL) { in DumpBuildIdFeature()
1858 build_id_records.push_back(BuildIdRecord(true, UINT_MAX, build_id, dso->Path())); in DumpBuildIdFeature()
1859 } else if (dso->type() == DSO_KERNEL_MODULE) { in DumpBuildIdFeature()
1861 if (android::base::EndsWith(dso->Path(), ".ko")) { in DumpBuildIdFeature()
1862 has_build_id = GetBuildIdFromDsoPath(dso->Path(), &build_id); in DumpBuildIdFeature()
1863 } else if (const std::string& path = dso->Path(); in DumpBuildIdFeature()
1869 build_id_records.push_back(BuildIdRecord(true, UINT_MAX, build_id, dso->Path())); in DumpBuildIdFeature()
1871 LOG(DEBUG) << "Can't read build_id for module " << dso->Path(); in DumpBuildIdFeature()
1873 } else if (dso->type() == DSO_ELF_FILE) { in DumpBuildIdFeature()
1874 if (dso->Path() == DEFAULT_EXECNAME_FOR_THREAD_MMAP || dso->IsForJavaMethod()) { in DumpBuildIdFeature()
1877 if (!GetBuildIdFromDsoPath(dso->Path(), &build_id)) { in DumpBuildIdFeature()
1878 LOG(DEBUG) << "Can't read build_id from file " << dso->Path(); in DumpBuildIdFeature()
1881 build_id_records.push_back(BuildIdRecord(false, UINT_MAX, build_id, dso->Path())); in DumpBuildIdFeature()
1894 for (Dso* dso : dso_v) { in DumpFileFeature()
1895 if (dso->type() == DSO_KERNEL_MODULE) { in DumpFileFeature()
1896 dso->CreateDumpId(); in DumpFileFeature()
1942 for (const Dso* dso : dso_set) { in DumpDebugUnwindFeature() local
1943 if (dso->type() != DSO_ELF_FILE) { in DumpDebugUnwindFeature()
1946 const std::string& filename = dso->GetDebugFilePath(); in DumpDebugUnwindFeature()
1971 Dso* dso = map->dso; in CollectHitFileInfo() local
1973 const Symbol* symbol = thread_tree_.FindSymbol(map, ips[i], nullptr, &dso); in CollectHitFileInfo()
1975 dso->CreateSymbolDumpId(symbol); in CollectHitFileInfo()
1978 if (!dso->HasDumpId() && dso->type() != DSO_UNKNOWN_FILE) { in CollectHitFileInfo()
1979 dso->CreateDumpId(); in CollectHitFileInfo()
1982 dso_set->insert(dso); in CollectHitFileInfo()