Lines Matching refs:Level
30 status_t result = set(binder, Level::VINTF, true /*log*/); in markVintf()
39 status_t result = set(binder, Level::VENDOR, true /*log*/); in markVndk()
44 return check(get(binder.get()), Level::VINTF); in requiresVintfDeclaration()
51 Stability::Level Stability::getLocalStability() { in getLocalStability()
60 return Level::SYSTEM; in getLocalStability()
62 return Level::VENDOR; in getLocalStability()
66 return Level::SYSTEM; in getLocalStability()
71 Level currentStability = get(binder); in set()
93 if (currentStability != Level::UNDECLARED && currentStability != stability) { in set()
113 Stability::Level Stability::get(IBinder* binder) { in get()
118 return static_cast<Stability::Level>(local->mStability); in get()
121 return static_cast<Stability::Level>(binder->remoteBinder()->mStability); in get()
124 bool Stability::check(int32_t provided, Level required) { in check()
142 case Level::UNDECLARED: return "undeclared stability"; in stabilityString()
143 case Level::VENDOR: return "vendor stability"; in stabilityString()
144 case Level::SYSTEM: return "system stability"; in stabilityString()
145 case Level::VINTF: return "vintf stability"; in stabilityString()