Home | History | Annotate | Download | only in simpleperf

Lines Matching defs:feature

105 static const std::string GetFeatureNameOrUnknown(int feature) {
106 std::string name = GetFeatureName(feature);
107 return name.empty() ? android::base::StringPrintf("unknown_feature(%d)", feature) : name;
142 for (auto& feature : features) {
143 printf("feature: %s\n", GetFeatureNameOrUnknown(feature).c_str());
215 int feature = pair.first;
217 printf("feature section for %s: offset %" PRId64 ", size %" PRId64 "\n",
218 GetFeatureNameOrUnknown(feature).c_str(), section.offset, section.size);
219 if (feature == FEAT_BUILD_ID) {
224 } else if (feature == FEAT_OSRELEASE) {
225 std::string s = record_file_reader_->ReadFeatureString(feature);
227 } else if (feature == FEAT_ARCH) {
228 std::string s = record_file_reader_->ReadFeatureString(feature);
230 } else if (feature == FEAT_CMDLINE) {
233 } else if (feature == FEAT_FILE) {
252 } else if (feature == FEAT_META_INFO) {