summaryrefslogtreecommitdiffstats
path: root/libdexfile
diff options
context:
space:
mode:
Diffstat (limited to 'libdexfile')
-rw-r--r--libdexfile/dex/hidden_api_access_flags.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libdexfile/dex/hidden_api_access_flags.h b/libdexfile/dex/hidden_api_access_flags.h
index 1aaeabd783..369615d678 100644
--- a/libdexfile/dex/hidden_api_access_flags.h
+++ b/libdexfile/dex/hidden_api_access_flags.h
@@ -62,6 +62,7 @@ class HiddenApiAccessFlags {
kLightGreylist,
kDarkGreylist,
kBlacklist,
+ kNoList,
};
static ALWAYS_INLINE ApiList DecodeFromDex(uint32_t dex_access_flags) {
@@ -159,6 +160,9 @@ inline std::ostream& operator<<(std::ostream& os, HiddenApiAccessFlags::ApiList
case HiddenApiAccessFlags::kBlacklist:
os << "blacklist";
break;
+ case HiddenApiAccessFlags::kNoList:
+ os << "no list";
+ break;
}
return os;
}