Lines Matching refs:feature
285 static const std::string GetFeatureNameOrUnknown(int feature) { in GetFeatureNameOrUnknown() argument
286 std::string name = GetFeatureName(feature); in GetFeatureNameOrUnknown()
287 return name.empty() ? android::base::StringPrintf("unknown_feature(%d)", feature) : name; in GetFeatureNameOrUnknown()
318 for (auto& feature : features) { in DumpFileHeader() local
319 printf("feature: %s\n", GetFeatureNameOrUnknown(feature).c_str()); in DumpFileHeader()
506 int feature = pair.first; in DumpFeatureSection() local
509 GetFeatureNameOrUnknown(feature).c_str(), section.offset, section.size); in DumpFeatureSection()
510 if (feature == FEAT_BUILD_ID) { in DumpFeatureSection()
515 } else if (feature == FEAT_OSRELEASE) { in DumpFeatureSection()
516 std::string s = record_file_reader_->ReadFeatureString(feature); in DumpFeatureSection()
518 } else if (feature == FEAT_ARCH) { in DumpFeatureSection()
519 std::string s = record_file_reader_->ReadFeatureString(feature); in DumpFeatureSection()
521 } else if (feature == FEAT_CMDLINE) { in DumpFeatureSection()
524 } else if (feature == FEAT_FILE || feature == FEAT_FILE2) { in DumpFeatureSection()
549 } else if (feature == FEAT_META_INFO) { in DumpFeatureSection()
554 } else if (feature == FEAT_AUXTRACE) { in DumpFeatureSection()
559 } else if (feature == FEAT_DEBUG_UNWIND) { in DumpFeatureSection()
567 } else if (feature == FEAT_ETM_BRANCH_LIST) { in DumpFeatureSection()