Lines Matching refs:feature
269 static const std::string GetFeatureNameOrUnknown(int feature) { in GetFeatureNameOrUnknown() argument
270 std::string name = GetFeatureName(feature); in GetFeatureNameOrUnknown()
271 return name.empty() ? android::base::StringPrintf("unknown_feature(%d)", feature) : name; in GetFeatureNameOrUnknown()
306 for (auto& feature : features) { in DumpFileHeader() local
307 printf("feature: %s\n", GetFeatureNameOrUnknown(feature).c_str()); in DumpFileHeader()
456 int feature = pair.first; in DumpFeatureSection() local
459 GetFeatureNameOrUnknown(feature).c_str(), section.offset, section.size); in DumpFeatureSection()
460 if (feature == FEAT_BUILD_ID) { in DumpFeatureSection()
465 } else if (feature == FEAT_OSRELEASE) { in DumpFeatureSection()
466 std::string s = record_file_reader_->ReadFeatureString(feature); in DumpFeatureSection()
468 } else if (feature == FEAT_ARCH) { in DumpFeatureSection()
469 std::string s = record_file_reader_->ReadFeatureString(feature); in DumpFeatureSection()
471 } else if (feature == FEAT_CMDLINE) { in DumpFeatureSection()
474 } else if (feature == FEAT_FILE) { in DumpFeatureSection()
495 } else if (feature == FEAT_META_INFO) { in DumpFeatureSection()
500 } else if (feature == FEAT_AUXTRACE) { in DumpFeatureSection()
505 } else if (feature == FEAT_DEBUG_UNWIND) { in DumpFeatureSection()